diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-02 00:20:19 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-02 00:20:19 +0000 |
commit | 5de63471b1d2b1532e28fb688e727dfc53e267d7 (patch) | |
tree | 1130dfc85ea1063fd858965ab382a9c3fe9e48d0 /chrome/test/ui_test_utils.cc | |
parent | ed59063c6b2e7aa113bbc19cc0cac6422799af57 (diff) | |
download | chromium_src-5de63471b1d2b1532e28fb688e727dfc53e267d7.zip chromium_src-5de63471b1d2b1532e28fb688e727dfc53e267d7.tar.gz chromium_src-5de63471b1d2b1532e28fb688e727dfc53e267d7.tar.bz2 |
Get rid of a bunch of includes to old locations of headers.
TBR=avi
Review URL: http://codereview.chromium.org/6602061
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@76470 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/ui_test_utils.cc')
-rw-r--r-- | chrome/test/ui_test_utils.cc | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/chrome/test/ui_test_utils.cc b/chrome/test/ui_test_utils.cc index e1ed6564b..7a57379 100644 --- a/chrome/test/ui_test_utils.cc +++ b/chrome/test/ui_test_utils.cc @@ -24,11 +24,6 @@ #include "chrome/browser/download/download_item.h" #include "chrome/browser/download/download_manager.h" #include "chrome/browser/profiles/profile.h" -#include "chrome/browser/renderer_host/render_process_host.h" -#include "chrome/browser/renderer_host/render_view_host.h" -#include "chrome/browser/tab_contents/navigation_controller.h" -#include "chrome/browser/tab_contents/navigation_entry.h" -#include "chrome/browser/tab_contents/tab_contents.h" #include "chrome/browser/tab_contents/thumbnail_generator.h" #include "chrome/browser/ui/browser.h" #include "chrome/browser/ui/find_bar/find_notification_details.h" @@ -39,9 +34,11 @@ #include "chrome/common/notification_type.h" #include "chrome/test/automation/javascript_execution_controller.h" #include "chrome/test/bookmark_load_observer.h" -#if defined(TOOLKIT_VIEWS) -#include "views/focus/accelerator_handler.h" -#endif +#include "content/browser/renderer_host/render_process_host.h" +#include "content/browser/renderer_host/render_view_host.h" +#include "content/browser/tab_contents/navigation_controller.h" +#include "content/browser/tab_contents/navigation_entry.h" +#include "content/browser/tab_contents/tab_contents.h" #include "googleurl/src/gurl.h" #include "net/base/net_util.h" #include "testing/gtest/include/gtest/gtest.h" @@ -49,6 +46,10 @@ #include "third_party/skia/include/core/SkColor.h" #include "ui/gfx/size.h" +#if defined(TOOLKIT_VIEWS) +#include "views/focus/accelerator_handler.h" +#endif + namespace ui_test_utils { namespace { |