| 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 <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 | 27 |
| 28 Status Parse(const base::DictionaryValue& desired_caps); | 28 Status Parse(const base::DictionaryValue& desired_caps); |
| 29 | 29 |
| 30 std::string android_package; | 30 std::string android_package; |
| 31 | 31 |
| 32 std::string log_path; | 32 std::string log_path; |
| 33 CommandLine command; | 33 CommandLine command; |
| 34 scoped_ptr<base::DictionaryValue> prefs; | 34 scoped_ptr<base::DictionaryValue> prefs; |
| 35 scoped_ptr<base::DictionaryValue> local_state; | 35 scoped_ptr<base::DictionaryValue> local_state; |
| 36 std::vector<std::string> extensions; | 36 std::vector<std::string> extensions; |
| 37 scoped_ptr<base::DictionaryValue> logging_prefs; |
| 37 }; | 38 }; |
| 38 | 39 |
| 39 #endif // CHROME_TEST_CHROMEDRIVER_CAPABILITIES_H_ | 40 #endif // CHROME_TEST_CHROMEDRIVER_CAPABILITIES_H_ |
| OLD | NEW |