OLD | NEW |
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 <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 23 matching lines...) Expand all Loading... |
34 Log* log, | 34 Log* log, |
35 DeviceManager* device_manager, | 35 DeviceManager* device_manager, |
36 const Capabilities& capabilities, | 36 const Capabilities& capabilities, |
37 ScopedVector<DevToolsEventListener>& devtools_event_listeners, | 37 ScopedVector<DevToolsEventListener>& devtools_event_listeners, |
38 scoped_ptr<Chrome>* chrome); | 38 scoped_ptr<Chrome>* chrome); |
39 | 39 |
40 namespace internal { | 40 namespace internal { |
41 Status ProcessExtensions(const std::vector<std::string>& extensions, | 41 Status ProcessExtensions(const std::vector<std::string>& extensions, |
42 const base::FilePath& temp_dir, | 42 const base::FilePath& temp_dir, |
43 bool include_automation_extension, | 43 bool include_automation_extension, |
44 CommandLine* command, | 44 Switches* switches, |
45 std::vector<std::string>* bg_pages); | 45 std::vector<std::string>* bg_pages); |
46 Status PrepareUserDataDir( | 46 Status PrepareUserDataDir( |
47 const base::FilePath& user_data_dir, | 47 const base::FilePath& user_data_dir, |
48 const base::DictionaryValue* custom_prefs, | 48 const base::DictionaryValue* custom_prefs, |
49 const base::DictionaryValue* custom_local_state); | 49 const base::DictionaryValue* custom_local_state); |
50 } // namespace internal | 50 } // namespace internal |
51 | 51 |
52 #endif // CHROME_TEST_CHROMEDRIVER_CHROME_LAUNCHER_H_ | 52 #endif // CHROME_TEST_CHROMEDRIVER_CHROME_LAUNCHER_H_ |
OLD | NEW |