Chromium Code Reviews| 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 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 1462 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1473 | 1473 |
| 1474 void GetPrivateNetworkInfo(base::DictionaryValue* args, | 1474 void GetPrivateNetworkInfo(base::DictionaryValue* args, |
| 1475 IPC::Message* reply_message); | 1475 IPC::Message* reply_message); |
| 1476 | 1476 |
| 1477 void ConnectToPrivateNetwork(base::DictionaryValue* args, | 1477 void ConnectToPrivateNetwork(base::DictionaryValue* args, |
| 1478 IPC::Message* reply_message); | 1478 IPC::Message* reply_message); |
| 1479 | 1479 |
| 1480 void DisconnectFromPrivateNetwork(base::DictionaryValue* args, | 1480 void DisconnectFromPrivateNetwork(base::DictionaryValue* args, |
| 1481 IPC::Message* reply_message); | 1481 IPC::Message* reply_message); |
| 1482 | 1482 |
| 1483 // Enterprise policy. | |
| 1484 void IsEnterpriseDevice(DictionaryValue* args, IPC::Message* reply_message); | |
| 1485 | |
| 1486 void EnrollEnterpriseDevice(DictionaryValue* args, | |
| 1487 IPC::Message* reply_message); | |
| 1488 | |
| 1489 void GetEnterprisePolicyInfo(DictionaryValue* args, | |
| 1490 IPC::Message* reply_message); | |
|
Joao da Silva
2013/01/17 09:38:05
Remove these calls from chrome/test/pyautolib/pyau
Mattias Nissler (ping if slow)
2013/01/22 10:31:39
Done.
| |
| 1491 | |
| 1492 // Accessibility. | 1483 // Accessibility. |
| 1493 void EnableSpokenFeedback(DictionaryValue* args, IPC::Message* reply_message); | 1484 void EnableSpokenFeedback(DictionaryValue* args, IPC::Message* reply_message); |
| 1494 | 1485 |
| 1495 void IsSpokenFeedbackEnabled(DictionaryValue* args, | 1486 void IsSpokenFeedbackEnabled(DictionaryValue* args, |
| 1496 IPC::Message* reply_message); | 1487 IPC::Message* reply_message); |
| 1497 | 1488 |
| 1498 // Time. | 1489 // Time. |
| 1499 void GetTimeInfo(Browser* browser, base::DictionaryValue* args, | 1490 void GetTimeInfo(Browser* browser, base::DictionaryValue* args, |
| 1500 IPC::Message* reply_message); | 1491 IPC::Message* reply_message); |
| 1501 | 1492 |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1575 scoped_ptr<AutomationEventQueue> automation_event_queue_; | 1566 scoped_ptr<AutomationEventQueue> automation_event_queue_; |
| 1576 | 1567 |
| 1577 // List of commands which just finish synchronously and don't require | 1568 // List of commands which just finish synchronously and don't require |
| 1578 // setting up an observer. | 1569 // setting up an observer. |
| 1579 static const int kSynchronousCommands[]; | 1570 static const int kSynchronousCommands[]; |
| 1580 | 1571 |
| 1581 DISALLOW_COPY_AND_ASSIGN(TestingAutomationProvider); | 1572 DISALLOW_COPY_AND_ASSIGN(TestingAutomationProvider); |
| 1582 }; | 1573 }; |
| 1583 | 1574 |
| 1584 #endif // CHROME_BROWSER_AUTOMATION_TESTING_AUTOMATION_PROVIDER_H_ | 1575 #endif // CHROME_BROWSER_AUTOMATION_TESTING_AUTOMATION_PROVIDER_H_ |
| OLD | NEW |