diff options
Diffstat (limited to 'chrome_frame')
-rw-r--r-- | chrome_frame/cfproxy.h | 2 | ||||
-rw-r--r-- | chrome_frame/cfproxy_proxy.cc | 2 | ||||
-rw-r--r-- | chrome_frame/cfproxy_support.cc | 2 | ||||
-rw-r--r-- | chrome_frame/cfproxy_test.cc | 2 | ||||
-rw-r--r-- | chrome_frame/chrome_frame_delegate.h | 2 | ||||
-rw-r--r-- | chrome_frame/external_tab.cc | 2 | ||||
-rw-r--r-- | chrome_frame/external_tab.h | 4 | ||||
-rw-r--r-- | chrome_frame/external_tab_test.cc | 2 | ||||
-rw-r--r-- | chrome_frame/plugin_url_request.cc | 2 | ||||
-rw-r--r-- | chrome_frame/test/net/test_automation_provider.cc | 2 | ||||
-rw-r--r-- | chrome_frame/test/reliability/page_load_test.cc | 2 |
11 files changed, 12 insertions, 12 deletions
diff --git a/chrome_frame/cfproxy.h b/chrome_frame/cfproxy.h index dc0e4b0..c3acf7a 100644 --- a/chrome_frame/cfproxy.h +++ b/chrome_frame/cfproxy.h @@ -13,8 +13,8 @@ #include "base/lock.h" #include "base/time.h" // for base::TimeDelta #include "base/file_path.h" +#include "chrome/common/automation_constants.h" #include "chrome/common/page_zoom.h" -#include "chrome/test/automation/automation_constants.h" enum FindInPageDirection { BACK = 0, FWD = 1 }; enum FindInPageCase { IGNORE_CASE = 0, CASE_SENSITIVE = 1 }; diff --git a/chrome_frame/cfproxy_proxy.cc b/chrome_frame/cfproxy_proxy.cc index 5d6a780..7dcb944 100644 --- a/chrome_frame/cfproxy_proxy.cc +++ b/chrome_frame/cfproxy_proxy.cc @@ -6,7 +6,7 @@ #include "base/tuple.h" #include "ipc/ipc_sync_message.h" -#include "chrome/test/automation/automation_messages.h" +#include "chrome/common/automation_messages.h" CFProxy::CFProxy(CFProxyTraits* api) : ipc_thread_("ipc"), sync_dispatcher_(&tab2delegate_), diff --git a/chrome_frame/cfproxy_support.cc b/chrome_frame/cfproxy_support.cc index 6b5224b..dc2eb8b 100644 --- a/chrome_frame/cfproxy_support.cc +++ b/chrome_frame/cfproxy_support.cc @@ -8,8 +8,8 @@ #include "base/atomic_sequence_num.h" #include "base/command_line.h" #include "base/process_util.h" +#include "chrome/common/automation_messages.h" #include "chrome/common/chrome_switches.h" -#include "chrome/test/automation/automation_messages.h" #include "chrome_frame/chrome_launcher_utils.h" #include "chrome_frame/utils.h" // for IsHeadlessMode(); diff --git a/chrome_frame/cfproxy_test.cc b/chrome_frame/cfproxy_test.cc index 6a547f8..3a99b92 100644 --- a/chrome_frame/cfproxy_test.cc +++ b/chrome_frame/cfproxy_test.cc @@ -5,8 +5,8 @@ #include <string> #include "base/file_path.h" #include "base/waitable_event.h" +#include "chrome/common/automation_messages.h" #include "chrome_frame/cfproxy_private.h" -#include "chrome/test/automation/automation_messages.h" #include "testing/gtest/include/gtest/gtest.h" #include "testing/gmock/include/gmock/gmock.h" #include "testing/gmock_mutant.h" diff --git a/chrome_frame/chrome_frame_delegate.h b/chrome_frame/chrome_frame_delegate.h index d111d38..c7890b7 100644 --- a/chrome_frame/chrome_frame_delegate.h +++ b/chrome_frame/chrome_frame_delegate.h @@ -13,7 +13,7 @@ #include "base/file_path.h" #include "base/lock.h" -#include "chrome/test/automation/automation_messages.h" +#include "chrome/common/automation_messages.h" #include "ipc/ipc_message.h" // A common interface supported by all the browser specific ChromeFrame diff --git a/chrome_frame/external_tab.cc b/chrome_frame/external_tab.cc index 785f6af..ca402d9 100644 --- a/chrome_frame/external_tab.cc +++ b/chrome_frame/external_tab.cc @@ -7,7 +7,7 @@ #include "base/tracked.h" #include "base/task.h" #include "base/waitable_event.h" -#include "chrome/test/automation/automation_messages.h" +#include "chrome/common/automation_messages.h" #include "chrome_frame/utils.h" DISABLE_RUNNABLE_METHOD_REFCOUNT(ExternalTabProxy); diff --git a/chrome_frame/external_tab.h b/chrome_frame/external_tab.h index 5411528..8affbc1 100644 --- a/chrome_frame/external_tab.h +++ b/chrome_frame/external_tab.h @@ -14,8 +14,8 @@ #include "base/scoped_comptr_win.h" #include "base/scoped_ptr.h" #include "base/time.h" -#include "chrome/common//page_zoom.h" -#include "chrome/test/automation/automation_constants.h" +#include "chrome/common/automation_constants.h" +#include "chrome/common/page_zoom.h" #include "chrome_frame/cfproxy.h" #include "chrome_frame/task_marshaller.h" #include "googleurl/src/gurl.h" diff --git a/chrome_frame/external_tab_test.cc b/chrome_frame/external_tab_test.cc index 015ed7b..5e3e44a 100644 --- a/chrome_frame/external_tab_test.cc +++ b/chrome_frame/external_tab_test.cc @@ -9,7 +9,7 @@ // #include "base/waitable_event.h" -#include "chrome/test/automation/automation_messages.h" +#include "chrome/common/automation_messages.h" #include "testing/gtest/include/gtest/gtest.h" #include "testing/gmock/include/gmock/gmock.h" #include "testing/gmock_mutant.h" diff --git a/chrome_frame/plugin_url_request.cc b/chrome_frame/plugin_url_request.cc index c4bf932..236090b 100644 --- a/chrome_frame/plugin_url_request.cc +++ b/chrome_frame/plugin_url_request.cc @@ -4,7 +4,7 @@ #include "chrome_frame/plugin_url_request.h" -#include "chrome/test/automation/automation_messages.h" +#include "chrome/common/automation_messages.h" #include "chrome_frame/np_browser_functions.h" PluginUrlRequest::PluginUrlRequest() diff --git a/chrome_frame/test/net/test_automation_provider.cc b/chrome_frame/test/net/test_automation_provider.cc index 7594f30..5b8a9a6 100644 --- a/chrome_frame/test/net/test_automation_provider.cc +++ b/chrome_frame/test/net/test_automation_provider.cc @@ -7,7 +7,7 @@ #include "base/command_line.h" #include "base/file_version_info.h" #include "base/path_service.h" -#include "chrome/test/automation/automation_messages.h" +#include "chrome/common/automation_messages.h" #include "chrome_frame/test/net/test_automation_resource_message_filter.h" namespace { diff --git a/chrome_frame/test/reliability/page_load_test.cc b/chrome_frame/test/reliability/page_load_test.cc index 482e00e..4116464 100644 --- a/chrome_frame/test/reliability/page_load_test.cc +++ b/chrome_frame/test/reliability/page_load_test.cc @@ -37,6 +37,7 @@ #include "chrome/browser/net/url_fixer_upper.h" #include "chrome/browser/prefs/pref_service.h" #include "chrome/browser/prefs/pref_value_store.h" +#include "chrome/common/automation_messages.h" #include "chrome/common/chrome_constants.h" #include "chrome/common/chrome_paths.h" #include "chrome/common/chrome_paths_internal.h" @@ -46,7 +47,6 @@ #include "chrome/common/pref_names.h" #include "chrome_frame/test/chrome_frame_test_utils.h" #include "chrome_frame/test/ie_event_sink.h" -#include "chrome/test/automation/automation_messages.h" #include "chrome/test/automation/automation_proxy.h" #include "chrome/test/automation/browser_proxy.h" #include "chrome/test/automation/tab_proxy.h" |