Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(405)

Side by Side Diff: chrome/browser/automation/testing_automation_provider.h

Issue 16045005: Migrate auto_tests about proxy configuration to browser_tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed comments. Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/automation/testing_automation_provider.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 1328 matching lines...) Expand 10 before | Expand all | Expand 10 after
1339 void GetBatteryInfo(base::DictionaryValue* args, IPC::Message* reply_message); 1339 void GetBatteryInfo(base::DictionaryValue* args, IPC::Message* reply_message);
1340 1340
1341 // Network. 1341 // Network.
1342 void GetNetworkInfo(base::DictionaryValue* args, IPC::Message* reply_message); 1342 void GetNetworkInfo(base::DictionaryValue* args, IPC::Message* reply_message);
1343 1343
1344 void NetworkScan(base::DictionaryValue* args, IPC::Message* reply_message); 1344 void NetworkScan(base::DictionaryValue* args, IPC::Message* reply_message);
1345 1345
1346 void ToggleNetworkDevice(base::DictionaryValue* args, 1346 void ToggleNetworkDevice(base::DictionaryValue* args,
1347 IPC::Message* reply_message); 1347 IPC::Message* reply_message);
1348 1348
1349 void GetProxySettings(base::DictionaryValue* args,
1350 IPC::Message* reply_message);
1351
1352 void SetProxySettings(base::DictionaryValue* args, 1349 void SetProxySettings(base::DictionaryValue* args,
1353 IPC::Message* reply_message); 1350 IPC::Message* reply_message);
1354 1351
1355 void SetSharedProxies(base::DictionaryValue* args, 1352 void SetSharedProxies(base::DictionaryValue* args,
1356 IPC::Message* reply_message); 1353 IPC::Message* reply_message);
1357 1354
1358 void RefreshInternetDetails(base::DictionaryValue* args,
1359 IPC::Message* reply_message);
1360
1361 void ConnectToCellularNetwork(base::DictionaryValue* args, 1355 void ConnectToCellularNetwork(base::DictionaryValue* args,
1362 IPC::Message* reply_message); 1356 IPC::Message* reply_message);
1363 1357
1364 void DisconnectFromCellularNetwork(base::DictionaryValue* args, 1358 void DisconnectFromCellularNetwork(base::DictionaryValue* args,
1365 IPC::Message* reply_message); 1359 IPC::Message* reply_message);
1366 1360
1367 void ConnectToWifiNetwork(base::DictionaryValue* args, 1361 void ConnectToWifiNetwork(base::DictionaryValue* args,
1368 IPC::Message* reply_message); 1362 IPC::Message* reply_message);
1369 1363
1370 void ConnectToHiddenWifiNetwork(base::DictionaryValue* args, 1364 void ConnectToHiddenWifiNetwork(base::DictionaryValue* args,
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
1470 scoped_ptr<AutomationEventQueue> automation_event_queue_; 1464 scoped_ptr<AutomationEventQueue> automation_event_queue_;
1471 1465
1472 // List of commands which just finish synchronously and don't require 1466 // List of commands which just finish synchronously and don't require
1473 // setting up an observer. 1467 // setting up an observer.
1474 static const int kSynchronousCommands[]; 1468 static const int kSynchronousCommands[];
1475 1469
1476 DISALLOW_COPY_AND_ASSIGN(TestingAutomationProvider); 1470 DISALLOW_COPY_AND_ASSIGN(TestingAutomationProvider);
1477 }; 1471 };
1478 1472
1479 #endif // CHROME_BROWSER_AUTOMATION_TESTING_AUTOMATION_PROVIDER_H_ 1473 #endif // CHROME_BROWSER_AUTOMATION_TESTING_AUTOMATION_PROVIDER_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/automation/testing_automation_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698