OLD | NEW |
1 // Copyright (c) 2014 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CONTENT_BROWSER_SITE_PER_PROCESS_BROWSERTEST_H_ | 5 #ifndef CONTENT_BROWSER_SITE_PER_PROCESS_BROWSERTEST_H_ |
6 #define CONTENT_BROWSER_SITE_PER_PROCESS_BROWSERTEST_H_ | 6 #define CONTENT_BROWSER_SITE_PER_PROCESS_BROWSERTEST_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "content/browser/web_contents/web_contents_impl.h" | |
11 #include "content/public/test/content_browser_test.h" | 10 #include "content/public/test/content_browser_test.h" |
12 #include "content/shell/browser/shell.h" | |
13 #include "content/test/content_browser_test_utils_internal.h" | 11 #include "content/test/content_browser_test_utils_internal.h" |
14 #include "url/gurl.h" | 12 #include "url/gurl.h" |
15 | 13 |
16 namespace content { | 14 namespace content { |
17 | 15 |
18 class FrameTreeNode; | 16 class FrameTreeNode; |
| 17 class Shell; |
19 | 18 |
20 class SitePerProcessBrowserTest : public ContentBrowserTest { | 19 class SitePerProcessBrowserTest : public ContentBrowserTest { |
21 public: | 20 public: |
22 SitePerProcessBrowserTest(); | 21 SitePerProcessBrowserTest(); |
23 | 22 |
24 protected: | 23 protected: |
25 std::string DepictFrameTree(FrameTreeNode* node); | 24 std::string DepictFrameTree(FrameTreeNode* node); |
26 | 25 |
27 void SetUpCommandLine(base::CommandLine* command_line) override; | 26 void SetUpCommandLine(base::CommandLine* command_line) override; |
28 void SetUpOnMainThread() override; | 27 void SetUpOnMainThread() override; |
29 | 28 |
30 WebContentsImpl* web_contents() { | |
31 return static_cast<WebContentsImpl*>(shell()->web_contents()); | |
32 } | |
33 | |
34 private: | 29 private: |
35 FrameTreeVisualizer visualizer_; | 30 FrameTreeVisualizer visualizer_; |
36 }; | 31 }; |
37 | 32 |
38 } // namespace content | 33 } // namespace content |
39 | 34 |
40 #endif // CONTENT_BROWSER_SITE_PER_PROCESS_BROWSERTEST_H_ | 35 #endif // CONTENT_BROWSER_SITE_PER_PROCESS_BROWSERTEST_H_ |
OLD | NEW |