Index: content/browser/site_per_process_browsertest.h |
diff --git a/content/browser/site_per_process_browsertest.h b/content/browser/site_per_process_browsertest.h |
index 2b1ae8c0290a79a8e6974283a681b6a6d098c5ce..3e48ed7d21f409c0f57ed0a6793f82a0c4994077 100644 |
--- a/content/browser/site_per_process_browsertest.h |
+++ b/content/browser/site_per_process_browsertest.h |
@@ -2,17 +2,25 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
+#include <string> |
+ |
#include "content/public/test/content_browser_test.h" |
#include "url/gurl.h" |
namespace content { |
+class FrameTreeNode; |
class Shell; |
class SitePerProcessBrowserTest : public ContentBrowserTest { |
public: |
SitePerProcessBrowserTest(); |
+ // Returns an alphabetically-sorted list of the site instance URLs |
Charlie Reis
2015/04/09 16:58:08
nit:s/site instance URLs/SiteInstance site URLs/
A
|
+ // in which RenderFrameProxyHosts of |node| currently exist. |
+ // TODO(nick): Make this a full-fledged tree walk. |
+ static std::string DumpProxyHostSiteInstances(FrameTreeNode* node); |
+ |
protected: |
// Start at a data URL so each extra navigation creates a navigation entry. |
// (The first navigation will silently be classified as AUTO_SUBFRAME.) |