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 1251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1262 void GetBatteryInfo(base::DictionaryValue* args, IPC::Message* reply_message); | 1262 void GetBatteryInfo(base::DictionaryValue* args, IPC::Message* reply_message); |
1263 | 1263 |
1264 // Network. | 1264 // Network. |
1265 void GetNetworkInfo(base::DictionaryValue* args, IPC::Message* reply_message); | 1265 void GetNetworkInfo(base::DictionaryValue* args, IPC::Message* reply_message); |
1266 | 1266 |
1267 void NetworkScan(base::DictionaryValue* args, IPC::Message* reply_message); | 1267 void NetworkScan(base::DictionaryValue* args, IPC::Message* reply_message); |
1268 | 1268 |
1269 void ToggleNetworkDevice(base::DictionaryValue* args, | 1269 void ToggleNetworkDevice(base::DictionaryValue* args, |
1270 IPC::Message* reply_message); | 1270 IPC::Message* reply_message); |
1271 | 1271 |
1272 void GetProxySettings(base::DictionaryValue* args, | 1272 void GetProxySettings(Browser* browser, base::DictionaryValue* args, |
Mattias Nissler (ping if slow)
2011/10/24 10:18:28
should break after ,
kuan
2011/10/25 02:01:54
Done.
| |
1273 IPC::Message* reply_message); | 1273 IPC::Message* reply_message); |
1274 | 1274 |
1275 void SetProxySettings(base::DictionaryValue* args, | 1275 void SetProxySettings(Browser* browser, base::DictionaryValue* args, |
Mattias Nissler (ping if slow)
2011/10/24 10:18:28
same here.
kuan
2011/10/25 02:01:54
Done.
| |
1276 IPC::Message* reply_message); | 1276 IPC::Message* reply_message); |
1277 | 1277 |
1278 void ConnectToCellularNetwork(base::DictionaryValue* args, | 1278 void ConnectToCellularNetwork(base::DictionaryValue* args, |
1279 IPC::Message* reply_message); | 1279 IPC::Message* reply_message); |
1280 | 1280 |
1281 void DisconnectFromCellularNetwork(base::DictionaryValue* args, | 1281 void DisconnectFromCellularNetwork(base::DictionaryValue* args, |
1282 IPC::Message* reply_message); | 1282 IPC::Message* reply_message); |
1283 | 1283 |
1284 void ConnectToWifiNetwork(base::DictionaryValue* args, | 1284 void ConnectToWifiNetwork(base::DictionaryValue* args, |
1285 IPC::Message* reply_message); | 1285 IPC::Message* reply_message); |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1407 // Used to enumerate browser profiles. | 1407 // Used to enumerate browser profiles. |
1408 scoped_refptr<ImporterList> importer_list_; | 1408 scoped_refptr<ImporterList> importer_list_; |
1409 | 1409 |
1410 // The stored data for the ImportSettings operation. | 1410 // The stored data for the ImportSettings operation. |
1411 ImportSettingsData import_settings_data_; | 1411 ImportSettingsData import_settings_data_; |
1412 | 1412 |
1413 DISALLOW_COPY_AND_ASSIGN(TestingAutomationProvider); | 1413 DISALLOW_COPY_AND_ASSIGN(TestingAutomationProvider); |
1414 }; | 1414 }; |
1415 | 1415 |
1416 #endif // CHROME_BROWSER_AUTOMATION_TESTING_AUTOMATION_PROVIDER_H_ | 1416 #endif // CHROME_BROWSER_AUTOMATION_TESTING_AUTOMATION_PROVIDER_H_ |
OLD | NEW |