| 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 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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(base::DictionaryValue* args, | 389 void GetBrowserInfo(base::DictionaryValue* args, |
| 390 IPC::Message* reply_message); | 390 IPC::Message* reply_message); |
| 391 | 391 |
| 392 // Get info about browser-related processes that currently exist. |
| 393 void GetProcessInfo(base::DictionaryValue* args, |
| 394 IPC::Message* reply_message); |
| 395 |
| 392 // Get info about the state of navigation in a given tab. | 396 // Get info about the state of navigation in a given tab. |
| 393 // This includes ssl info. | 397 // This includes ssl info. |
| 394 // Uses the JSON interface for input/output. | 398 // Uses the JSON interface for input/output. |
| 395 void GetNavigationInfo(Browser* browser, | 399 void GetNavigationInfo(Browser* browser, |
| 396 base::DictionaryValue* args, | 400 base::DictionaryValue* args, |
| 397 IPC::Message* reply_message); | 401 IPC::Message* reply_message); |
| 398 | 402 |
| 399 // Get info about downloads. This includes only ones that have been | 403 // Get info about downloads. This includes only ones that have been |
| 400 // registered by the history system. | 404 // registered by the history system. |
| 401 // Uses the JSON interface for input/output. | 405 // Uses the JSON interface for input/output. |
| (...skipping 940 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1342 // Used to enumerate browser profiles. | 1346 // Used to enumerate browser profiles. |
| 1343 scoped_refptr<ImporterList> importer_list_; | 1347 scoped_refptr<ImporterList> importer_list_; |
| 1344 | 1348 |
| 1345 // The stored data for the ImportSettings operation. | 1349 // The stored data for the ImportSettings operation. |
| 1346 ImportSettingsData import_settings_data_; | 1350 ImportSettingsData import_settings_data_; |
| 1347 | 1351 |
| 1348 DISALLOW_COPY_AND_ASSIGN(TestingAutomationProvider); | 1352 DISALLOW_COPY_AND_ASSIGN(TestingAutomationProvider); |
| 1349 }; | 1353 }; |
| 1350 | 1354 |
| 1351 #endif // CHROME_BROWSER_AUTOMATION_TESTING_AUTOMATION_PROVIDER_H_ | 1355 #endif // CHROME_BROWSER_AUTOMATION_TESTING_AUTOMATION_PROVIDER_H_ |
| OLD | NEW |