| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| (...skipping 988 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 999 | 999 |
| 1000 void Login(DictionaryValue* args, IPC::Message* reply_message); | 1000 void Login(DictionaryValue* args, IPC::Message* reply_message); |
| 1001 | 1001 |
| 1002 void LockScreen(DictionaryValue* args, IPC::Message* reply_message); | 1002 void LockScreen(DictionaryValue* args, IPC::Message* reply_message); |
| 1003 | 1003 |
| 1004 void UnlockScreen(DictionaryValue* args, IPC::Message* reply_message); | 1004 void UnlockScreen(DictionaryValue* args, IPC::Message* reply_message); |
| 1005 | 1005 |
| 1006 void SignoutInScreenLocker(DictionaryValue* args, | 1006 void SignoutInScreenLocker(DictionaryValue* args, |
| 1007 IPC::Message* reply_message); | 1007 IPC::Message* reply_message); |
| 1008 | 1008 |
| 1009 void GetBatteryInfo(DictionaryValue* args, IPC::Message* reply_message); |
| 1010 |
| 1009 void GetNetworkInfo(DictionaryValue* args, IPC::Message* reply_message); | 1011 void GetNetworkInfo(DictionaryValue* args, IPC::Message* reply_message); |
| 1010 | 1012 |
| 1011 void NetworkScan(DictionaryValue* args, IPC::Message* reply_message); | 1013 void NetworkScan(DictionaryValue* args, IPC::Message* reply_message); |
| 1012 | 1014 |
| 1013 void ConnectToWifiNetwork(DictionaryValue* args, IPC::Message* reply_message); | 1015 void ConnectToWifiNetwork(DictionaryValue* args, IPC::Message* reply_message); |
| 1014 | 1016 |
| 1015 void DisconnectFromWifiNetwork(DictionaryValue* args, | 1017 void DisconnectFromWifiNetwork(DictionaryValue* args, |
| 1016 IPC::Message* reply_message); | 1018 IPC::Message* reply_message); |
| 1017 #endif // defined(OS_CHROMEOS) | 1019 #endif // defined(OS_CHROMEOS) |
| 1018 | 1020 |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1079 // Used to enumerate browser profiles. | 1081 // Used to enumerate browser profiles. |
| 1080 scoped_refptr<ImporterList> importer_list_; | 1082 scoped_refptr<ImporterList> importer_list_; |
| 1081 | 1083 |
| 1082 // The stored data for the ImportSettings operation. | 1084 // The stored data for the ImportSettings operation. |
| 1083 ImportSettingsData import_settings_data_; | 1085 ImportSettingsData import_settings_data_; |
| 1084 | 1086 |
| 1085 DISALLOW_COPY_AND_ASSIGN(TestingAutomationProvider); | 1087 DISALLOW_COPY_AND_ASSIGN(TestingAutomationProvider); |
| 1086 }; | 1088 }; |
| 1087 | 1089 |
| 1088 #endif // CHROME_BROWSER_AUTOMATION_TESTING_AUTOMATION_PROVIDER_H_ | 1090 #endif // CHROME_BROWSER_AUTOMATION_TESTING_AUTOMATION_PROVIDER_H_ |
| OLD | NEW |