Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(35)

Side by Side Diff: headless/test/headless_browser_test.h

Issue 2813953002: Add HeadlessTabSocket (Closed)
Patch Set: Change HeadlessTabSocketImpl::SetListener Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « headless/public/headless_web_contents.h ('k') | headless/test/headless_browser_test.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 114
115 // Implemented by tests and used to send request(s) to DevTools. Subclasses 115 // Implemented by tests and used to send request(s) to DevTools. Subclasses
116 // need to ensure that FinishAsynchronousTest() is called after response(s) 116 // need to ensure that FinishAsynchronousTest() is called after response(s)
117 // are processed (e.g. in a callback). 117 // are processed (e.g. in a callback).
118 virtual void RunDevTooledTest() = 0; 118 virtual void RunDevTooledTest() = 0;
119 119
120 // Returns the protocol handlers to construct the browser with. By default 120 // Returns the protocol handlers to construct the browser with. By default
121 // the map returned is empty. 121 // the map returned is empty.
122 virtual ProtocolHandlerMap GetProtocolHandlers(); 122 virtual ProtocolHandlerMap GetProtocolHandlers();
123 123
124 // Whether or not we should request a TabSocket when creating |web_contents_|.
125 virtual bool GetCreateTabSocket();
126
124 protected: 127 protected:
125 void RunTest(); 128 void RunTest();
126 129
127 HeadlessBrowserContext* browser_context_; // Not owned. 130 HeadlessBrowserContext* browser_context_; // Not owned.
128 HeadlessWebContents* web_contents_; 131 HeadlessWebContents* web_contents_;
129 std::unique_ptr<HeadlessDevToolsClient> devtools_client_; 132 std::unique_ptr<HeadlessDevToolsClient> devtools_client_;
130 bool render_process_exited_; 133 bool render_process_exited_;
131 }; 134 };
132 135
133 } // namespace headless 136 } // namespace headless
134 137
135 #endif // HEADLESS_TEST_HEADLESS_BROWSER_TEST_H_ 138 #endif // HEADLESS_TEST_HEADLESS_BROWSER_TEST_H_
OLDNEW
« no previous file with comments | « headless/public/headless_web_contents.h ('k') | headless/test/headless_browser_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698