diff options
author | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-02 20:03:34 +0000 |
---|---|---|
committer | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-02 20:03:34 +0000 |
commit | 83421477bc9698c3f0c9de41764eb85dfc162ba7 (patch) | |
tree | 5bd1d315da95e1c907e3145574d3b3ce18a056ae /chrome/browser | |
parent | 78fa96de8a0a6112d5aea2a42241427f6becc9c8 (diff) | |
download | chromium_src-83421477bc9698c3f0c9de41764eb85dfc162ba7.zip chromium_src-83421477bc9698c3f0c9de41764eb85dfc162ba7.tar.gz chromium_src-83421477bc9698c3f0c9de41764eb85dfc162ba7.tar.bz2 |
Move WindowImpl to gfx so I can use it there for canvas unit tests.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/2813042
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51554 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser')
-rw-r--r-- | chrome/browser/aeropeek_manager.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/aeropeek_manager.cc b/chrome/browser/aeropeek_manager.cc index b9e6b14..ba0ca91 100644 --- a/chrome/browser/aeropeek_manager.cc +++ b/chrome/browser/aeropeek_manager.cc @@ -8,7 +8,6 @@ #include <shobjidl.h> #include "app/win_util.h" -#include "app/win/window_impl.h" #include "base/command_line.h" #include "base/scoped_comptr_win.h" #include "base/scoped_handle_win.h" @@ -29,6 +28,7 @@ #include "chrome/installer/util/browser_distribution.h" #include "gfx/gdi_util.h" #include "gfx/icon_util.h" +#include "gfx/window_impl.h" #include "skia/ext/image_operations.h" #include "skia/ext/platform_canvas.h" #include "third_party/skia/include/core/SkBitmap.h" @@ -563,7 +563,7 @@ class SendLivePreviewTask : public Task { // * Translating received messages for TabStrip. // This class is used by the AeroPeekManager class, which is a proxy // between TabStrip and Windows 7. -class AeroPeekWindow : public app::WindowImpl { +class AeroPeekWindow : public gfx::WindowImpl { public: AeroPeekWindow(HWND frame_window, AeroPeekWindowDelegate* delegate, |