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 <string> | 9 #include <string> |
10 | 10 |
(...skipping 1016 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1027 | 1027 |
1028 void SignoutInScreenLocker(DictionaryValue* args, | 1028 void SignoutInScreenLocker(DictionaryValue* args, |
1029 IPC::Message* reply_message); | 1029 IPC::Message* reply_message); |
1030 | 1030 |
1031 void GetBatteryInfo(DictionaryValue* args, IPC::Message* reply_message); | 1031 void GetBatteryInfo(DictionaryValue* args, IPC::Message* reply_message); |
1032 | 1032 |
1033 void GetNetworkInfo(DictionaryValue* args, IPC::Message* reply_message); | 1033 void GetNetworkInfo(DictionaryValue* args, IPC::Message* reply_message); |
1034 | 1034 |
1035 void NetworkScan(DictionaryValue* args, IPC::Message* reply_message); | 1035 void NetworkScan(DictionaryValue* args, IPC::Message* reply_message); |
1036 | 1036 |
| 1037 void GetProxySettings(DictionaryValue* args, IPC::Message* reply_message); |
| 1038 |
| 1039 void SetProxySettings(DictionaryValue* args, IPC::Message* reply_message); |
| 1040 |
1037 void ConnectToWifiNetwork(DictionaryValue* args, IPC::Message* reply_message); | 1041 void ConnectToWifiNetwork(DictionaryValue* args, IPC::Message* reply_message); |
1038 | 1042 |
1039 void DisconnectFromWifiNetwork(DictionaryValue* args, | 1043 void DisconnectFromWifiNetwork(DictionaryValue* args, |
1040 IPC::Message* reply_message); | 1044 IPC::Message* reply_message); |
1041 #endif // defined(OS_CHROMEOS) | 1045 #endif // defined(OS_CHROMEOS) |
1042 | 1046 |
1043 void WaitForTabCountToBecome(int browser_handle, | 1047 void WaitForTabCountToBecome(int browser_handle, |
1044 int target_tab_count, | 1048 int target_tab_count, |
1045 IPC::Message* reply_message); | 1049 IPC::Message* reply_message); |
1046 | 1050 |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1103 // Used to enumerate browser profiles. | 1107 // Used to enumerate browser profiles. |
1104 scoped_refptr<ImporterList> importer_list_; | 1108 scoped_refptr<ImporterList> importer_list_; |
1105 | 1109 |
1106 // The stored data for the ImportSettings operation. | 1110 // The stored data for the ImportSettings operation. |
1107 ImportSettingsData import_settings_data_; | 1111 ImportSettingsData import_settings_data_; |
1108 | 1112 |
1109 DISALLOW_COPY_AND_ASSIGN(TestingAutomationProvider); | 1113 DISALLOW_COPY_AND_ASSIGN(TestingAutomationProvider); |
1110 }; | 1114 }; |
1111 | 1115 |
1112 #endif // CHROME_BROWSER_AUTOMATION_TESTING_AUTOMATION_PROVIDER_H_ | 1116 #endif // CHROME_BROWSER_AUTOMATION_TESTING_AUTOMATION_PROVIDER_H_ |
OLD | NEW |