diff options
author | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-03 09:39:44 +0000 |
---|---|---|
committer | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-03 09:39:44 +0000 |
commit | ce560f84a2640482e7880cee4d9e4b1661fed3bc (patch) | |
tree | 12ddd0b4d810b477bc732278b734ef3708650c8d /chrome/browser/automation/automation_provider.h | |
parent | 5775257334a0fc605d27312556ad3123d5909865 (diff) | |
download | chromium_src-ce560f84a2640482e7880cee4d9e4b1661fed3bc.zip chromium_src-ce560f84a2640482e7880cee4d9e4b1661fed3bc.tar.gz chromium_src-ce560f84a2640482e7880cee4d9e4b1661fed3bc.tar.bz2 |
Headers cleanup in chrome/browser/
- reduce header dependencies
- miscellanous cleanups (add missing includes for OS_ defines etc)
Further changesets may follow. I was only looking at header files up to character_encoding.h.
Review URL: http://codereview.chromium.org/118072
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@17470 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/automation/automation_provider.h')
-rw-r--r-- | chrome/browser/automation/automation_provider.h | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/chrome/browser/automation/automation_provider.h b/chrome/browser/automation/automation_provider.h index 9de02a6..1506868 100644 --- a/chrome/browser/automation/automation_provider.h +++ b/chrome/browser/automation/automation_provider.h @@ -24,9 +24,9 @@ #include "chrome/browser/history/history.h" #include "chrome/browser/tab_contents/navigation_entry.h" #include "chrome/common/ipc_message.h" -#include "chrome/common/ipc_sync_channel.h" +#include "chrome/common/ipc_channel.h" #include "chrome/common/notification_registrar.h" -#include "chrome/test/automation/automation_messages.h" +#include "chrome/test/automation/automation_constants.h" #if defined(OS_WIN) #include "views/event.h" #endif // defined(OS_WIN) @@ -34,9 +34,14 @@ #if defined(OS_WIN) // TODO(port): enable these. #include "chrome/browser/automation/automation_constrained_window_tracker.h" -enum AutomationMsg_NavigationResponseValues; #endif +struct AutomationMsg_Find_Params; + +namespace IPC { +struct Reposition_Params; +} + class LoginHandler; class NavigationControllerRestoredObserver; class ExternalTabContainer; |