| 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 1425 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1436 | 1436 |
| 1437 void GetPrivateNetworkInfo(base::DictionaryValue* args, | 1437 void GetPrivateNetworkInfo(base::DictionaryValue* args, |
| 1438 IPC::Message* reply_message); | 1438 IPC::Message* reply_message); |
| 1439 | 1439 |
| 1440 void ConnectToPrivateNetwork(base::DictionaryValue* args, | 1440 void ConnectToPrivateNetwork(base::DictionaryValue* args, |
| 1441 IPC::Message* reply_message); | 1441 IPC::Message* reply_message); |
| 1442 | 1442 |
| 1443 void DisconnectFromPrivateNetwork(base::DictionaryValue* args, | 1443 void DisconnectFromPrivateNetwork(base::DictionaryValue* args, |
| 1444 IPC::Message* reply_message); | 1444 IPC::Message* reply_message); |
| 1445 | 1445 |
| 1446 // Enterprise policy. | |
| 1447 void IsEnterpriseDevice(DictionaryValue* args, IPC::Message* reply_message); | |
| 1448 | |
| 1449 void EnrollEnterpriseDevice(DictionaryValue* args, | |
| 1450 IPC::Message* reply_message); | |
| 1451 | |
| 1452 void GetEnterprisePolicyInfo(DictionaryValue* args, | |
| 1453 IPC::Message* reply_message); | |
| 1454 | |
| 1455 // Accessibility. | 1446 // Accessibility. |
| 1456 void EnableSpokenFeedback(DictionaryValue* args, IPC::Message* reply_message); | 1447 void EnableSpokenFeedback(DictionaryValue* args, IPC::Message* reply_message); |
| 1457 | 1448 |
| 1458 void IsSpokenFeedbackEnabled(DictionaryValue* args, | 1449 void IsSpokenFeedbackEnabled(DictionaryValue* args, |
| 1459 IPC::Message* reply_message); | 1450 IPC::Message* reply_message); |
| 1460 | 1451 |
| 1461 // Time. | 1452 // Time. |
| 1462 void GetTimeInfo(Browser* browser, base::DictionaryValue* args, | 1453 void GetTimeInfo(Browser* browser, base::DictionaryValue* args, |
| 1463 IPC::Message* reply_message); | 1454 IPC::Message* reply_message); |
| 1464 | 1455 |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1535 scoped_ptr<AutomationEventQueue> automation_event_queue_; | 1526 scoped_ptr<AutomationEventQueue> automation_event_queue_; |
| 1536 | 1527 |
| 1537 // List of commands which just finish synchronously and don't require | 1528 // List of commands which just finish synchronously and don't require |
| 1538 // setting up an observer. | 1529 // setting up an observer. |
| 1539 static const int kSynchronousCommands[]; | 1530 static const int kSynchronousCommands[]; |
| 1540 | 1531 |
| 1541 DISALLOW_COPY_AND_ASSIGN(TestingAutomationProvider); | 1532 DISALLOW_COPY_AND_ASSIGN(TestingAutomationProvider); |
| 1542 }; | 1533 }; |
| 1543 | 1534 |
| 1544 #endif // CHROME_BROWSER_AUTOMATION_TESTING_AUTOMATION_PROVIDER_H_ | 1535 #endif // CHROME_BROWSER_AUTOMATION_TESTING_AUTOMATION_PROVIDER_H_ |
| OLD | NEW |