| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 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_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 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 1328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1339 void GetBatteryInfo(base::DictionaryValue* args, IPC::Message* reply_message); | 1339 void GetBatteryInfo(base::DictionaryValue* args, IPC::Message* reply_message); |
| 1340 | 1340 |
| 1341 // Network. | 1341 // Network. |
| 1342 void GetNetworkInfo(base::DictionaryValue* args, IPC::Message* reply_message); | 1342 void GetNetworkInfo(base::DictionaryValue* args, IPC::Message* reply_message); |
| 1343 | 1343 |
| 1344 void NetworkScan(base::DictionaryValue* args, IPC::Message* reply_message); | 1344 void NetworkScan(base::DictionaryValue* args, IPC::Message* reply_message); |
| 1345 | 1345 |
| 1346 void ToggleNetworkDevice(base::DictionaryValue* args, | 1346 void ToggleNetworkDevice(base::DictionaryValue* args, |
| 1347 IPC::Message* reply_message); | 1347 IPC::Message* reply_message); |
| 1348 | 1348 |
| 1349 void GetProxySettings(base::DictionaryValue* args, | |
| 1350 IPC::Message* reply_message); | |
| 1351 | |
| 1352 void SetProxySettings(base::DictionaryValue* args, | 1349 void SetProxySettings(base::DictionaryValue* args, |
| 1353 IPC::Message* reply_message); | 1350 IPC::Message* reply_message); |
| 1354 | 1351 |
| 1355 void SetSharedProxies(base::DictionaryValue* args, | 1352 void SetSharedProxies(base::DictionaryValue* args, |
| 1356 IPC::Message* reply_message); | 1353 IPC::Message* reply_message); |
| 1357 | 1354 |
| 1358 void RefreshInternetDetails(base::DictionaryValue* args, | |
| 1359 IPC::Message* reply_message); | |
| 1360 | |
| 1361 void ConnectToCellularNetwork(base::DictionaryValue* args, | 1355 void ConnectToCellularNetwork(base::DictionaryValue* args, |
| 1362 IPC::Message* reply_message); | 1356 IPC::Message* reply_message); |
| 1363 | 1357 |
| 1364 void DisconnectFromCellularNetwork(base::DictionaryValue* args, | 1358 void DisconnectFromCellularNetwork(base::DictionaryValue* args, |
| 1365 IPC::Message* reply_message); | 1359 IPC::Message* reply_message); |
| 1366 | 1360 |
| 1367 void ConnectToWifiNetwork(base::DictionaryValue* args, | 1361 void ConnectToWifiNetwork(base::DictionaryValue* args, |
| 1368 IPC::Message* reply_message); | 1362 IPC::Message* reply_message); |
| 1369 | 1363 |
| 1370 void ConnectToHiddenWifiNetwork(base::DictionaryValue* args, | 1364 void ConnectToHiddenWifiNetwork(base::DictionaryValue* args, |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1470 scoped_ptr<AutomationEventQueue> automation_event_queue_; | 1464 scoped_ptr<AutomationEventQueue> automation_event_queue_; |
| 1471 | 1465 |
| 1472 // List of commands which just finish synchronously and don't require | 1466 // List of commands which just finish synchronously and don't require |
| 1473 // setting up an observer. | 1467 // setting up an observer. |
| 1474 static const int kSynchronousCommands[]; | 1468 static const int kSynchronousCommands[]; |
| 1475 | 1469 |
| 1476 DISALLOW_COPY_AND_ASSIGN(TestingAutomationProvider); | 1470 DISALLOW_COPY_AND_ASSIGN(TestingAutomationProvider); |
| 1477 }; | 1471 }; |
| 1478 | 1472 |
| 1479 #endif // CHROME_BROWSER_AUTOMATION_TESTING_AUTOMATION_PROVIDER_H_ | 1473 #endif // CHROME_BROWSER_AUTOMATION_TESTING_AUTOMATION_PROVIDER_H_ |
| OLD | NEW |