diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-16 22:22:27 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-16 22:22:27 +0000 |
commit | bb95acab3e4ddbb4239ae576149a4efcf2dade40 (patch) | |
tree | 86f57574216f7a24ea7020377c8e7e34757fd5f2 /chrome/browser/automation/testing_automation_provider.h | |
parent | cee93fb8b40f324f8d8aa686edd96ba8f1f54a7e (diff) | |
download | chromium_src-bb95acab3e4ddbb4239ae576149a4efcf2dade40.zip chromium_src-bb95acab3e4ddbb4239ae576149a4efcf2dade40.tar.gz chromium_src-bb95acab3e4ddbb4239ae576149a4efcf2dade40.tar.bz2 |
Cleanup: Remove more forward declarations in various chrome/browser directories.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/8566028
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110367 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/automation/testing_automation_provider.h')
-rw-r--r-- | chrome/browser/automation/testing_automation_provider.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/chrome/browser/automation/testing_automation_provider.h b/chrome/browser/automation/testing_automation_provider.h index 3402685..5ca8acf 100644 --- a/chrome/browser/automation/testing_automation_provider.h +++ b/chrome/browser/automation/testing_automation_provider.h @@ -6,7 +6,9 @@ #define CHROME_BROWSER_AUTOMATION_TESTING_AUTOMATION_PROVIDER_H_ #pragma once +#include <map> #include <string> +#include <vector> #include "base/basictypes.h" #include "base/compiler_specific.h" @@ -27,8 +29,9 @@ #include "chrome/browser/chromeos/dbus/power_manager_client.h" #endif // defined(OS_CHROMEOS) +class AutofillProfile; +class CreditCard; class ImporterList; -class TemplateURLService; namespace base { class DictionaryValue; @@ -44,9 +47,8 @@ class TestingAutomationProvider : public AutomationProvider, public importer::ImporterListObserver, #if defined(OS_CHROMEOS) public chromeos::PowerManagerClient::Observer, -#endif // defined(OS_CHROMEOS) +#endif // defined(OS_CHROMEOS) public content::NotificationObserver { - public: explicit TestingAutomationProvider(Profile* profile); @@ -265,7 +267,7 @@ class TestingAutomationProvider : public AutomationProvider, // Get the bookmarks as a JSON string. void GetBookmarksAsJSON(int handle, std::string* bookmarks_as_json, - bool *success); + bool* success); // Wait for the bookmark model to load. void WaitForBookmarkModelToLoad(int handle, IPC::Message* reply_message); |