diff options
author | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-19 22:16:53 +0000 |
---|---|---|
committer | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-19 22:16:53 +0000 |
commit | e766106da8a18fc2d2dcf45968262763312f7071 (patch) | |
tree | 1d426c74a7e1f62e6637c349ed7c4453ded441f7 /tools | |
parent | 8450c4f5d875881bfcc1b728390d4a01e6538efa (diff) | |
download | chromium_src-e766106da8a18fc2d2dcf45968262763312f7071.zip chromium_src-e766106da8a18fc2d2dcf45968262763312f7071.tar.gz chromium_src-e766106da8a18fc2d2dcf45968262763312f7071.tar.bz2 |
Move UI-relevant Windows files to ui/base.
BUG=none
TEST=none
TBR=brettw
Review URL: http://codereview.chromium.org/6254011
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@71854 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools')
-rw-r--r-- | tools/memory_watcher/DEPS | 2 | ||||
-rw-r--r-- | tools/memory_watcher/hotkey.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/tools/memory_watcher/DEPS b/tools/memory_watcher/DEPS index 54348df..529cd41 100644 --- a/tools/memory_watcher/DEPS +++ b/tools/memory_watcher/DEPS @@ -1,4 +1,4 @@ include_rules = [ - "+app", + "+ui/base", "+gfx", ] diff --git a/tools/memory_watcher/hotkey.h b/tools/memory_watcher/hotkey.h index 8a0fb97..ae82451 100644 --- a/tools/memory_watcher/hotkey.h +++ b/tools/memory_watcher/hotkey.h @@ -6,11 +6,11 @@ #define TOOLS_MEMORY_WATCHER_HOTKEY_H_ #include "gfx/rect.h" -#include "app/win/window_impl.h" +#include "ui/base/win/window_impl.h" // HotKey handler. // Programs wishing to register a hotkey can use this. -class HotKeyHandler : public app::win::WindowImpl { +class HotKeyHandler : public ui::WindowImpl { public: HotKeyHandler(UINT modifiers, UINT vk) : modifiers_(modifiers), |