diff options
author | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-20 18:27:06 +0000 |
---|---|---|
committer | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-20 18:27:06 +0000 |
commit | 9dd7e3d78c14f67c5c3d78868a3a63bbc4f90634 (patch) | |
tree | 3b7332926a05a1c8382eb27422c385b56b29cb24 /views/focus | |
parent | a12f7fbe12afffb4b1b31ec0d6b0988f1f9a6554 (diff) | |
download | chromium_src-9dd7e3d78c14f67c5c3d78868a3a63bbc4f90634.zip chromium_src-9dd7e3d78c14f67c5c3d78868a3a63bbc4f90634.tar.gz chromium_src-9dd7e3d78c14f67c5c3d78868a3a63bbc4f90634.tar.bz2 |
Move a bunch of random other files to src/ui/base
BUG=none
TEST=none
TBR=brettw
Review URL: http://codereview.chromium.org/6257006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@71970 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'views/focus')
-rw-r--r-- | views/focus/focus_util_win.cc | 4 | ||||
-rw-r--r-- | views/focus/focus_util_win.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/views/focus/focus_util_win.cc b/views/focus/focus_util_win.cc index 26f5550..245fbf4 100644 --- a/views/focus/focus_util_win.cc +++ b/views/focus/focus_util_win.cc @@ -6,11 +6,11 @@ #include <windowsx.h> -#include "app/view_prop.h" #include "base/auto_reset.h" +#include "ui/base/view_prop.h" #include "ui/base/win/hwnd_util.h" -using app::ViewProp; +using ui::ViewProp; namespace views { diff --git a/views/focus/focus_util_win.h b/views/focus/focus_util_win.h index 6394f5d..3bfeec4 100644 --- a/views/focus/focus_util_win.h +++ b/views/focus/focus_util_win.h @@ -8,7 +8,7 @@ #include <windows.h> -namespace app { +namespace ui { class ViewProp; } @@ -18,7 +18,7 @@ namespace views { // We reroute the mouse wheel messages to such HWND when they are under the // mouse pointer (but are not the active window). Callers own the returned // object. -app::ViewProp* SetWindowSupportsRerouteMouseWheel(HWND hwnd); +ui::ViewProp* SetWindowSupportsRerouteMouseWheel(HWND hwnd); // Forwards mouse wheel messages to the window under it. // Windows sends mouse wheel messages to the currently active window. |