OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 HEADLESS_TEST_HEADLESS_BROWSER_TEST_H_ | 5 #ifndef HEADLESS_TEST_HEADLESS_BROWSER_TEST_H_ |
6 #define HEADLESS_TEST_HEADLESS_BROWSER_TEST_H_ | 6 #define HEADLESS_TEST_HEADLESS_BROWSER_TEST_H_ |
7 | 7 |
8 #include <memory> | 8 #include <memory> |
9 #include <string> | 9 #include <string> |
10 | 10 |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
126 // Selects between creating the TabSocket only in an isolated world or the | 126 // Selects between creating the TabSocket only in an isolated world or the |
127 // main world. | 127 // main world. |
128 virtual bool GetCreateTabSocketOnlyForIsolatedWorld(); | 128 virtual bool GetCreateTabSocketOnlyForIsolatedWorld(); |
129 | 129 |
130 protected: | 130 protected: |
131 void RunTest(); | 131 void RunTest(); |
132 | 132 |
133 HeadlessBrowserContext* browser_context_; // Not owned. | 133 HeadlessBrowserContext* browser_context_; // Not owned. |
134 HeadlessWebContents* web_contents_; | 134 HeadlessWebContents* web_contents_; |
135 std::unique_ptr<HeadlessDevToolsClient> devtools_client_; | 135 std::unique_ptr<HeadlessDevToolsClient> devtools_client_; |
| 136 std::unique_ptr<HeadlessDevToolsClient> browser_devtools_client_; |
136 bool render_process_exited_; | 137 bool render_process_exited_; |
137 }; | 138 }; |
138 | 139 |
139 } // namespace headless | 140 } // namespace headless |
140 | 141 |
141 #endif // HEADLESS_TEST_HEADLESS_BROWSER_TEST_H_ | 142 #endif // HEADLESS_TEST_HEADLESS_BROWSER_TEST_H_ |
OLD | NEW |