| 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_CAPABILITIES_H_ | 5 #ifndef CHROME_TEST_CHROMEDRIVER_CAPABILITIES_H_ |
| 6 #define CHROME_TEST_CHROMEDRIVER_CAPABILITIES_H_ | 6 #define CHROME_TEST_CHROMEDRIVER_CAPABILITIES_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 | 137 |
| 138 std::string log_path; | 138 std::string log_path; |
| 139 | 139 |
| 140 LoggingPrefs logging_prefs; | 140 LoggingPrefs logging_prefs; |
| 141 | 141 |
| 142 // If set, enable minidump for chrome crashes and save to this directory. | 142 // If set, enable minidump for chrome crashes and save to this directory. |
| 143 std::string minidump_path; | 143 std::string minidump_path; |
| 144 | 144 |
| 145 std::string page_load_strategy; | 145 std::string page_load_strategy; |
| 146 | 146 |
| 147 std::string unexpected_alert_behaviour; |
| 148 |
| 147 bool network_emulation_enabled; | 149 bool network_emulation_enabled; |
| 148 | 150 |
| 149 PerfLoggingPrefs perf_logging_prefs; | 151 PerfLoggingPrefs perf_logging_prefs; |
| 150 | 152 |
| 151 std::unique_ptr<base::DictionaryValue> prefs; | 153 std::unique_ptr<base::DictionaryValue> prefs; |
| 152 | 154 |
| 153 Switches switches; | 155 Switches switches; |
| 154 | 156 |
| 155 std::set<WebViewInfo::Type> window_types; | 157 std::set<WebViewInfo::Type> window_types; |
| 156 }; | 158 }; |
| 157 | 159 |
| 158 #endif // CHROME_TEST_CHROMEDRIVER_CAPABILITIES_H_ | 160 #endif // CHROME_TEST_CHROMEDRIVER_CAPABILITIES_H_ |
| OLD | NEW |