| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_BROWSER_AUTOMATION_TESTING_AUTOMATION_PROVIDER_H_ | 5 #ifndef CHROME_BROWSER_AUTOMATION_TESTING_AUTOMATION_PROVIDER_H_ |
| 6 #define CHROME_BROWSER_AUTOMATION_TESTING_AUTOMATION_PROVIDER_H_ | 6 #define CHROME_BROWSER_AUTOMATION_TESTING_AUTOMATION_PROVIDER_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <map> | 9 #include <map> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 1298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1309 // "SafeBrowsingEnabled": false, | 1309 // "SafeBrowsingEnabled": false, |
| 1310 // }, | 1310 // }, |
| 1311 // "recommended_platform": { | 1311 // "recommended_platform": { |
| 1312 // ... | 1312 // ... |
| 1313 // }, | 1313 // }, |
| 1314 // "managed_cloud": { | 1314 // "managed_cloud": { |
| 1315 // ... | 1315 // ... |
| 1316 // }, | 1316 // }, |
| 1317 // "recommended_cloud": { | 1317 // "recommended_cloud": { |
| 1318 // ... | 1318 // ... |
| 1319 // } | 1319 // }, |
| 1320 // "machine_scope": True |
| 1320 // } | 1321 // } |
| 1321 // output: none | 1322 // output: none |
| 1322 void SetPolicies(base::DictionaryValue* args, | 1323 void SetPolicies(base::DictionaryValue* args, |
| 1323 IPC::Message* reply_message); | 1324 IPC::Message* reply_message); |
| 1324 | 1325 |
| 1325 // Gets a list of supported policies. The output is a map of policy name to | 1326 // Gets a list of supported policies. The output is a map of policy name to |
| 1326 // its value type. | 1327 // its value type. |
| 1327 // Example: | 1328 // Example: |
| 1328 // input: none | 1329 // input: none |
| 1329 // output: { "ShowHomeButton": "bool", | 1330 // output: { "ShowHomeButton": "bool", |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1516 // Used to enumerate browser profiles. | 1517 // Used to enumerate browser profiles. |
| 1517 scoped_refptr<ImporterList> importer_list_; | 1518 scoped_refptr<ImporterList> importer_list_; |
| 1518 | 1519 |
| 1519 // The stored data for the ImportSettings operation. | 1520 // The stored data for the ImportSettings operation. |
| 1520 ImportSettingsData import_settings_data_; | 1521 ImportSettingsData import_settings_data_; |
| 1521 | 1522 |
| 1522 DISALLOW_COPY_AND_ASSIGN(TestingAutomationProvider); | 1523 DISALLOW_COPY_AND_ASSIGN(TestingAutomationProvider); |
| 1523 }; | 1524 }; |
| 1524 | 1525 |
| 1525 #endif // CHROME_BROWSER_AUTOMATION_TESTING_AUTOMATION_PROVIDER_H_ | 1526 #endif // CHROME_BROWSER_AUTOMATION_TESTING_AUTOMATION_PROVIDER_H_ |
| OLD | NEW |