| 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 1293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1304 void LockScreen(base::DictionaryValue* args, IPC::Message* reply_message); | 1304 void LockScreen(base::DictionaryValue* args, IPC::Message* reply_message); |
| 1305 | 1305 |
| 1306 void UnlockScreen(base::DictionaryValue* args, IPC::Message* reply_message); | 1306 void UnlockScreen(base::DictionaryValue* args, IPC::Message* reply_message); |
| 1307 | 1307 |
| 1308 void SignoutInScreenLocker(base::DictionaryValue* args, | 1308 void SignoutInScreenLocker(base::DictionaryValue* args, |
| 1309 IPC::Message* reply_message); | 1309 IPC::Message* reply_message); |
| 1310 | 1310 |
| 1311 // Battery. | 1311 // Battery. |
| 1312 void GetBatteryInfo(base::DictionaryValue* args, IPC::Message* reply_message); | 1312 void GetBatteryInfo(base::DictionaryValue* args, IPC::Message* reply_message); |
| 1313 | 1313 |
| 1314 // Network. | |
| 1315 void GetNetworkInfo(base::DictionaryValue* args, IPC::Message* reply_message); | |
| 1316 | |
| 1317 void NetworkScan(base::DictionaryValue* args, IPC::Message* reply_message); | |
| 1318 | |
| 1319 void ToggleNetworkDevice(base::DictionaryValue* args, | |
| 1320 IPC::Message* reply_message); | |
| 1321 | |
| 1322 void ConnectToHiddenWifiNetwork(base::DictionaryValue* args, | |
| 1323 IPC::Message* reply_message); | |
| 1324 | |
| 1325 void ForgetWifiNetwork(DictionaryValue* args, IPC::Message* reply_message); | |
| 1326 | |
| 1327 // Accessibility. | 1314 // Accessibility. |
| 1328 void EnableSpokenFeedback(DictionaryValue* args, IPC::Message* reply_message); | 1315 void EnableSpokenFeedback(DictionaryValue* args, IPC::Message* reply_message); |
| 1329 | 1316 |
| 1330 void IsSpokenFeedbackEnabled(DictionaryValue* args, | 1317 void IsSpokenFeedbackEnabled(DictionaryValue* args, |
| 1331 IPC::Message* reply_message); | 1318 IPC::Message* reply_message); |
| 1332 | 1319 |
| 1333 // Time. | 1320 // Time. |
| 1334 void GetTimeInfo(Browser* browser, base::DictionaryValue* args, | 1321 void GetTimeInfo(Browser* browser, base::DictionaryValue* args, |
| 1335 IPC::Message* reply_message); | 1322 IPC::Message* reply_message); |
| 1336 | 1323 |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1393 scoped_ptr<AutomationEventQueue> automation_event_queue_; | 1380 scoped_ptr<AutomationEventQueue> automation_event_queue_; |
| 1394 | 1381 |
| 1395 // List of commands which just finish synchronously and don't require | 1382 // List of commands which just finish synchronously and don't require |
| 1396 // setting up an observer. | 1383 // setting up an observer. |
| 1397 static const int kSynchronousCommands[]; | 1384 static const int kSynchronousCommands[]; |
| 1398 | 1385 |
| 1399 DISALLOW_COPY_AND_ASSIGN(TestingAutomationProvider); | 1386 DISALLOW_COPY_AND_ASSIGN(TestingAutomationProvider); |
| 1400 }; | 1387 }; |
| 1401 | 1388 |
| 1402 #endif // CHROME_BROWSER_AUTOMATION_TESTING_AUTOMATION_PROVIDER_H_ | 1389 #endif // CHROME_BROWSER_AUTOMATION_TESTING_AUTOMATION_PROVIDER_H_ |
| OLD | NEW |