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

Side by Side Diff: chrome/test/chromedriver/chrome_launcher.h

Issue 2230053002: [chromedriver] Added option to make element references W3C compliant. Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed presubmit errors. Created 4 years, 4 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
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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 CHROME_TEST_CHROMEDRIVER_CHROME_LAUNCHER_H_ 5 #ifndef CHROME_TEST_CHROMEDRIVER_CHROME_LAUNCHER_H_
6 #define CHROME_TEST_CHROMEDRIVER_CHROME_LAUNCHER_H_ 6 #define CHROME_TEST_CHROMEDRIVER_CHROME_LAUNCHER_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 18 matching lines...) Expand all
29 class URLRequestContextGetter; 29 class URLRequestContextGetter;
30 30
31 Status LaunchChrome( 31 Status LaunchChrome(
32 URLRequestContextGetter* context_getter, 32 URLRequestContextGetter* context_getter,
33 const SyncWebSocketFactory& socket_factory, 33 const SyncWebSocketFactory& socket_factory,
34 DeviceManager* device_manager, 34 DeviceManager* device_manager,
35 PortServer* port_server, 35 PortServer* port_server,
36 PortManager* port_manager, 36 PortManager* port_manager,
37 const Capabilities& capabilities, 37 const Capabilities& capabilities,
38 ScopedVector<DevToolsEventListener>* devtools_event_listeners, 38 ScopedVector<DevToolsEventListener>* devtools_event_listeners,
39 std::unique_ptr<Chrome>* chrome); 39 std::unique_ptr<Chrome>* chrome,
40 bool w3c_compliant);
40 41
41 namespace internal { 42 namespace internal {
42 Status ProcessExtensions(const std::vector<std::string>& extensions, 43 Status ProcessExtensions(const std::vector<std::string>& extensions,
43 const base::FilePath& temp_dir, 44 const base::FilePath& temp_dir,
44 bool include_automation_extension, 45 bool include_automation_extension,
45 Switches* switches, 46 Switches* switches,
46 std::vector<std::string>* bg_pages); 47 std::vector<std::string>* bg_pages);
47 Status PrepareUserDataDir( 48 Status PrepareUserDataDir(
48 const base::FilePath& user_data_dir, 49 const base::FilePath& user_data_dir,
49 const base::DictionaryValue* custom_prefs, 50 const base::DictionaryValue* custom_prefs,
50 const base::DictionaryValue* custom_local_state); 51 const base::DictionaryValue* custom_local_state);
51 } // namespace internal 52 } // namespace internal
52 53
53 #endif // CHROME_TEST_CHROMEDRIVER_CHROME_LAUNCHER_H_ 54 #endif // CHROME_TEST_CHROMEDRIVER_CHROME_LAUNCHER_H_
OLDNEW
« no previous file with comments | « chrome/test/chromedriver/chrome/web_view_impl.cc ('k') | chrome/test/chromedriver/chrome_launcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698