| 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 368 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 379 | 379 |
| 380 // Perform actions on an infobar like dismiss, accept, cancel. | 380 // Perform actions on an infobar like dismiss, accept, cancel. |
| 381 // Uses the JSON interface for input/output. | 381 // Uses the JSON interface for input/output. |
| 382 void PerformActionOnInfobar(Browser* browser, | 382 void PerformActionOnInfobar(Browser* browser, |
| 383 base::DictionaryValue* args, | 383 base::DictionaryValue* args, |
| 384 IPC::Message* reply_message); | 384 IPC::Message* reply_message); |
| 385 | 385 |
| 386 // Get info about the chromium/chrome in use. | 386 // Get info about the chromium/chrome in use. |
| 387 // This includes things like version, executable name, executable path. | 387 // This includes things like version, executable name, executable path. |
| 388 // Uses the JSON interface for input/output. | 388 // Uses the JSON interface for input/output. |
| 389 void GetBrowserInfo(Browser* browser, | 389 void GetBrowserInfo(base::DictionaryValue* args, |
| 390 base::DictionaryValue* args, | |
| 391 IPC::Message* reply_message); | 390 IPC::Message* reply_message); |
| 392 | 391 |
| 393 // Get info about the state of navigation in a given tab. | 392 // Get info about the state of navigation in a given tab. |
| 394 // This includes ssl info. | 393 // This includes ssl info. |
| 395 // Uses the JSON interface for input/output. | 394 // Uses the JSON interface for input/output. |
| 396 void GetNavigationInfo(Browser* browser, | 395 void GetNavigationInfo(Browser* browser, |
| 397 base::DictionaryValue* args, | 396 base::DictionaryValue* args, |
| 398 IPC::Message* reply_message); | 397 IPC::Message* reply_message); |
| 399 | 398 |
| 400 // Get info about downloads. This includes only ones that have been | 399 // Get info about downloads. This includes only ones that have been |
| (...skipping 942 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1343 // Used to enumerate browser profiles. | 1342 // Used to enumerate browser profiles. |
| 1344 scoped_refptr<ImporterList> importer_list_; | 1343 scoped_refptr<ImporterList> importer_list_; |
| 1345 | 1344 |
| 1346 // The stored data for the ImportSettings operation. | 1345 // The stored data for the ImportSettings operation. |
| 1347 ImportSettingsData import_settings_data_; | 1346 ImportSettingsData import_settings_data_; |
| 1348 | 1347 |
| 1349 DISALLOW_COPY_AND_ASSIGN(TestingAutomationProvider); | 1348 DISALLOW_COPY_AND_ASSIGN(TestingAutomationProvider); |
| 1350 }; | 1349 }; |
| 1351 | 1350 |
| 1352 #endif // CHROME_BROWSER_AUTOMATION_TESTING_AUTOMATION_PROVIDER_H_ | 1351 #endif // CHROME_BROWSER_AUTOMATION_TESTING_AUTOMATION_PROVIDER_H_ |
| OLD | NEW |