| 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> |
| 9 |
| 8 #include <map> | 10 #include <map> |
| 9 #include <set> | 11 #include <set> |
| 10 #include <string> | 12 #include <string> |
| 11 #include <vector> | 13 #include <vector> |
| 12 | 14 |
| 13 #include "base/command_line.h" | 15 #include "base/command_line.h" |
| 14 #include "base/files/file_path.h" | 16 #include "base/files/file_path.h" |
| 15 #include "base/memory/scoped_ptr.h" | 17 #include "base/memory/scoped_ptr.h" |
| 16 #include "base/strings/string16.h" | 18 #include "base/strings/string16.h" |
| 17 #include "chrome/test/chromedriver/chrome/device_metrics.h" | 19 #include "chrome/test/chromedriver/chrome/device_metrics.h" |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 PerfLoggingPrefs perf_logging_prefs; | 144 PerfLoggingPrefs perf_logging_prefs; |
| 143 | 145 |
| 144 scoped_ptr<base::DictionaryValue> prefs; | 146 scoped_ptr<base::DictionaryValue> prefs; |
| 145 | 147 |
| 146 Switches switches; | 148 Switches switches; |
| 147 | 149 |
| 148 std::set<WebViewInfo::Type> window_types; | 150 std::set<WebViewInfo::Type> window_types; |
| 149 }; | 151 }; |
| 150 | 152 |
| 151 #endif // CHROME_TEST_CHROMEDRIVER_CAPABILITIES_H_ | 153 #endif // CHROME_TEST_CHROMEDRIVER_CAPABILITIES_H_ |
| OLD | NEW |