#ifndef CONTENT_PUBLIC_TEST_FRAME_TEST_UTILS_H_
#define CONTENT_PUBLIC_TEST_FRAME_TEST_UTILS_H_
#include <string>
#include <string_view>
#include <vector>
#include "content/public/test/browser_test_utils.h"
#include "net/cookies/canonical_cookie.h"
#include "url/gurl.h"
namespace content {
std::string ArrangeFramesAndGetContentFromLeaf(
WebContents* web_contents,
net::EmbeddedTestServer* server,
std::string_view frame_tree,
const std::vector<int>& leaf_path);
std::vector<net::CanonicalCookie> ArrangeFramesAndGetCanonicalCookiesForLeaf(
WebContents* web_contents,
net::EmbeddedTestServer* server,
std::string_view frame_tree,
const GURL& cookie_url);
}
#endif