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 474 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
485 // for example response. | 485 // for example response. |
486 void GetInitialLoadTimes(Browser* browser, | 486 void GetInitialLoadTimes(Browser* browser, |
487 base::DictionaryValue* args, | 487 base::DictionaryValue* args, |
488 IPC::Message* reply_message); | 488 IPC::Message* reply_message); |
489 | 489 |
490 // Get info about plugins. | 490 // Get info about plugins. |
491 // Uses the JSON interface for input/output. | 491 // Uses the JSON interface for input/output. |
492 void GetPluginsInfo(Browser* browser, | 492 void GetPluginsInfo(Browser* browser, |
493 base::DictionaryValue* args, | 493 base::DictionaryValue* args, |
494 IPC::Message* reply_message); | 494 IPC::Message* reply_message); |
| 495 void GetPluginsInfoCallback(Browser* browser, |
| 496 base::DictionaryValue* args, |
| 497 IPC::Message* reply_message); |
495 | 498 |
496 // Enable a plugin. | 499 // Enable a plugin. |
497 // Uses the JSON interface for input/output. | 500 // Uses the JSON interface for input/output. |
498 void EnablePlugin(Browser* browser, | 501 void EnablePlugin(Browser* browser, |
499 base::DictionaryValue* args, | 502 base::DictionaryValue* args, |
500 IPC::Message* reply_message); | 503 IPC::Message* reply_message); |
501 | 504 |
502 // Disable a plugin. | 505 // Disable a plugin. |
503 // Uses the JSON interface for input/output. | 506 // Uses the JSON interface for input/output. |
504 void DisablePlugin(Browser* browser, | 507 void DisablePlugin(Browser* browser, |
(...skipping 837 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1342 // Used to enumerate browser profiles. | 1345 // Used to enumerate browser profiles. |
1343 scoped_refptr<ImporterList> importer_list_; | 1346 scoped_refptr<ImporterList> importer_list_; |
1344 | 1347 |
1345 // The stored data for the ImportSettings operation. | 1348 // The stored data for the ImportSettings operation. |
1346 ImportSettingsData import_settings_data_; | 1349 ImportSettingsData import_settings_data_; |
1347 | 1350 |
1348 DISALLOW_COPY_AND_ASSIGN(TestingAutomationProvider); | 1351 DISALLOW_COPY_AND_ASSIGN(TestingAutomationProvider); |
1349 }; | 1352 }; |
1350 | 1353 |
1351 #endif // CHROME_BROWSER_AUTOMATION_TESTING_AUTOMATION_PROVIDER_H_ | 1354 #endif // CHROME_BROWSER_AUTOMATION_TESTING_AUTOMATION_PROVIDER_H_ |
OLD | NEW |