| 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 1397 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1408 | 1408 |
| 1409 void ConnectToPrivateNetwork(base::DictionaryValue* args, | 1409 void ConnectToPrivateNetwork(base::DictionaryValue* args, |
| 1410 IPC::Message* reply_message); | 1410 IPC::Message* reply_message); |
| 1411 | 1411 |
| 1412 void DisconnectFromPrivateNetwork(base::DictionaryValue* args, | 1412 void DisconnectFromPrivateNetwork(base::DictionaryValue* args, |
| 1413 IPC::Message* reply_message); | 1413 IPC::Message* reply_message); |
| 1414 | 1414 |
| 1415 // Enterprise policy. | 1415 // Enterprise policy. |
| 1416 void IsEnterpriseDevice(DictionaryValue* args, IPC::Message* reply_message); | 1416 void IsEnterpriseDevice(DictionaryValue* args, IPC::Message* reply_message); |
| 1417 | 1417 |
| 1418 void EnrollEnterpriseDevice(DictionaryValue* args, | 1418 void ShowEnterpriseWizard(DictionaryValue* args, |
| 1419 IPC::Message* reply_message); | 1419 IPC::Message* reply_message); |
| 1420 |
| 1421 void AddEnrollmentObserver(DictionaryValue* args, |
| 1422 IPC::Message* reply_message); |
| 1420 | 1423 |
| 1421 void GetEnterprisePolicyInfo(DictionaryValue* args, | 1424 void GetEnterprisePolicyInfo(DictionaryValue* args, |
| 1422 IPC::Message* reply_message); | 1425 IPC::Message* reply_message); |
| 1423 | 1426 |
| 1424 // Accessibility. | 1427 // Accessibility. |
| 1425 void EnableSpokenFeedback(DictionaryValue* args, IPC::Message* reply_message); | 1428 void EnableSpokenFeedback(DictionaryValue* args, IPC::Message* reply_message); |
| 1426 | 1429 |
| 1427 void IsSpokenFeedbackEnabled(DictionaryValue* args, | 1430 void IsSpokenFeedbackEnabled(DictionaryValue* args, |
| 1428 IPC::Message* reply_message); | 1431 IPC::Message* reply_message); |
| 1429 | 1432 |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1497 ImportSettingsData import_settings_data_; | 1500 ImportSettingsData import_settings_data_; |
| 1498 | 1501 |
| 1499 // The automation event observer queue. It is lazily created when an observer | 1502 // The automation event observer queue. It is lazily created when an observer |
| 1500 // is added to avoid overhead when not needed. | 1503 // is added to avoid overhead when not needed. |
| 1501 scoped_ptr<AutomationEventQueue> automation_event_queue_; | 1504 scoped_ptr<AutomationEventQueue> automation_event_queue_; |
| 1502 | 1505 |
| 1503 DISALLOW_COPY_AND_ASSIGN(TestingAutomationProvider); | 1506 DISALLOW_COPY_AND_ASSIGN(TestingAutomationProvider); |
| 1504 }; | 1507 }; |
| 1505 | 1508 |
| 1506 #endif // CHROME_BROWSER_AUTOMATION_TESTING_AUTOMATION_PROVIDER_H_ | 1509 #endif // CHROME_BROWSER_AUTOMATION_TESTING_AUTOMATION_PROVIDER_H_ |
| OLD | NEW |