diff options
author | oshima@chromium.org <oshima@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-16 09:30:33 +0000 |
---|---|---|
committer | oshima@chromium.org <oshima@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-16 09:30:33 +0000 |
commit | 536f8082c8e8b492086e7f675bdb477005f770cb (patch) | |
tree | 5b22096c355bf4e8327bde51b7dcde0de2e5617b /chrome/browser/automation/automation_provider_win.cc | |
parent | 644a10733be94786e8169d035d7f527b105ee529 (diff) | |
download | chromium_src-536f8082c8e8b492086e7f675bdb477005f770cb.zip chromium_src-536f8082c8e8b492086e7f675bdb477005f770cb.tar.gz chromium_src-536f8082c8e8b492086e7f675bdb477005f770cb.tar.bz2 |
Original CL (http://codereview.chromium.org/9390038/) somehow got screwed and CQ couldn't patch it. This is exact copy of the original CL to land.
* Move automation/ui_controls to ui/ui_controls
* Refactored aura impl so that ui/ui_controls doesn't depend on
aura.
* Moved MoveMouseToCenterAndPress to ui_test_util.h as it depends on views and can't be declared in ui.
* a couple of cleanups:
- Renamed gtk_screen_utils.h to _util.h to match other util.h files.
- indent fix
- remove unnecessary includes.
This CL allows a test to use ui_controls without depending on chrome.
TBR=sky@chromium.org,erg@chromium.org
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/9699098
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@127138 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/automation/automation_provider_win.cc')
-rw-r--r-- | chrome/browser/automation/automation_provider_win.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/automation/automation_provider_win.cc b/chrome/browser/automation/automation_provider_win.cc index e348c29..4587a4d 100644 --- a/chrome/browser/automation/automation_provider_win.cc +++ b/chrome/browser/automation/automation_provider_win.cc @@ -12,7 +12,6 @@ #include "chrome/browser/automation/automation_browser_tracker.h" #include "chrome/browser/automation/automation_tab_tracker.h" #include "chrome/browser/automation/automation_window_tracker.h" -#include "chrome/browser/automation/ui_controls.h" #include "chrome/browser/external_tab_container_win.h" #include "chrome/browser/printing/print_view_manager.h" #include "chrome/browser/profiles/profile.h" @@ -28,6 +27,7 @@ #include "content/public/browser/web_contents.h" #include "content/public/common/page_zoom.h" #include "ui/base/keycodes/keyboard_codes.h" +#include "ui/ui_controls/ui_controls.h" #include "ui/views/focus/accelerator_handler.h" #include "ui/views/widget/root_view.h" |