summaryrefslogtreecommitdiffstats
path: root/webkit
diff options
context:
space:
mode:
authorben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-02 20:03:34 +0000
committerben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-02 20:03:34 +0000
commit83421477bc9698c3f0c9de41764eb85dfc162ba7 (patch)
tree5bd1d315da95e1c907e3145574d3b3ce18a056ae /webkit
parent78fa96de8a0a6112d5aea2a42241427f6becc9c8 (diff)
downloadchromium_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 'webkit')
-rw-r--r--webkit/default_plugin/plugin_impl_win.h4
-rw-r--r--webkit/tools/test_shell/foreground_helper.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/webkit/default_plugin/plugin_impl_win.h b/webkit/default_plugin/plugin_impl_win.h
index bc110ec..f2e9ba8 100644
--- a/webkit/default_plugin/plugin_impl_win.h
+++ b/webkit/default_plugin/plugin_impl_win.h
@@ -8,7 +8,7 @@
#include <string>
#include <vector>
-#include "app/win/window_impl.h"
+#include "gfx/window_impl.h"
#include "third_party/npapi/bindings/npapi.h"
#include "webkit/default_plugin/install_dialog.h"
#include "webkit/default_plugin/plugin_database_handler.h"
@@ -34,7 +34,7 @@ class PluginDatabaseHandler;
// Provides the plugin installation functionality. This class is
// instantiated with the information like the mime type of the
// target plugin, the display mode, etc.
-class PluginInstallerImpl : public app::WindowImpl {
+class PluginInstallerImpl : public gfx::WindowImpl {
public:
static const int kRefreshPluginsMessage = WM_APP + 1;
static const int kInstallMissingPluginMessage = WM_APP + 2;
diff --git a/webkit/tools/test_shell/foreground_helper.h b/webkit/tools/test_shell/foreground_helper.h
index 146a8f0..1050236 100644
--- a/webkit/tools/test_shell/foreground_helper.h
+++ b/webkit/tools/test_shell/foreground_helper.h
@@ -5,8 +5,8 @@
#ifndef WEBKIT_TOOLS_TEST_SHELL_FOREGROUND_HELPER_H_
#define WEBKIT_TOOLS_TEST_SHELL_FOREGROUND_HELPER_H_
-#include "app/win/window_impl.h"
#include "base/logging.h"
+#include "gfx/window_impl.h"
// Helper class for moving a window to the foreground.
// Windows XP and later will not allow a window which is in the background to
@@ -15,7 +15,7 @@
// to be capable of moving to the foreground.
//
// This is probably leveraging a windows bug.
-class ForegroundHelper : public app::WindowImpl {
+class ForegroundHelper : public gfx::WindowImpl {
public:
BEGIN_MSG_MAP_EX(ForegroundHelper)
MESSAGE_HANDLER(WM_HOTKEY, OnHotKey)