diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-11 20:21:32 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-11 20:21:32 +0000 |
commit | 010ea08a647dfdc4c75aaab2fca65128f50f2379 (patch) | |
tree | 6cd61817ffebd7d50fa55e5654dd967a3c69617e /webkit | |
parent | b44dbd15aeb4dbe7a5be36f7f5c55e6cddf0bac9 (diff) | |
download | chromium_src-010ea08a647dfdc4c75aaab2fca65128f50f2379.zip chromium_src-010ea08a647dfdc4c75aaab2fca65128f50f2379.tar.gz chromium_src-010ea08a647dfdc4c75aaab2fca65128f50f2379.tar.bz2 |
Move native_widget_types and gtk_native_view_id_manager from base/gfx to
app/gfx in preparation for removing the base_gfx project. This also moves
base/window_impl.cc to app/win/window_impl because this file shouldn't be in
base.
TEST=none
BUG=none
Review URL: http://codereview.chromium.org/273017
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@28691 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit')
-rw-r--r-- | webkit/default_plugin/DEPS | 1 | ||||
-rw-r--r-- | webkit/default_plugin/plugin_impl_win.h | 6 | ||||
-rw-r--r-- | webkit/glue/plugins/gtk_plugin_container_manager.h | 2 | ||||
-rw-r--r-- | webkit/glue/plugins/plugin_instance.h | 2 | ||||
-rw-r--r-- | webkit/glue/plugins/webplugin_delegate_impl.h | 2 | ||||
-rw-r--r-- | webkit/glue/webplugin.h | 2 | ||||
-rw-r--r-- | webkit/glue/webplugin_delegate.h | 2 | ||||
-rw-r--r-- | webkit/glue/webplugin_impl.h | 2 | ||||
-rw-r--r-- | webkit/glue/webplugin_page_delegate.h | 2 | ||||
-rw-r--r-- | webkit/tools/test_shell/foreground_helper.h | 4 | ||||
-rw-r--r-- | webkit/tools/test_shell/test_shell.h | 2 | ||||
-rw-r--r-- | webkit/tools/test_shell/test_webview_delegate.cc | 2 | ||||
-rw-r--r-- | webkit/tools/test_shell/test_webview_delegate_win.cc | 2 | ||||
-rw-r--r-- | webkit/tools/test_shell/webview_host.h | 2 | ||||
-rw-r--r-- | webkit/tools/test_shell/webwidget_host.h | 2 |
15 files changed, 18 insertions, 17 deletions
diff --git a/webkit/default_plugin/DEPS b/webkit/default_plugin/DEPS index 5827c26..a24c01b 100644 --- a/webkit/default_plugin/DEPS +++ b/webkit/default_plugin/DEPS @@ -1,3 +1,4 @@ include_rules = [ + "+app", "+third_party/libxml", ] diff --git a/webkit/default_plugin/plugin_impl_win.h b/webkit/default_plugin/plugin_impl_win.h index 3f2191c..c1aa535 100644 --- a/webkit/default_plugin/plugin_impl_win.h +++ b/webkit/default_plugin/plugin_impl_win.h @@ -1,4 +1,4 @@ -// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. +// Copyright (c) 2009 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -8,7 +8,7 @@ #include <string> #include <vector> -#include "base/window_impl.h" +#include "app/win/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 base::WindowImpl { +class PluginInstallerImpl : public app::WindowImpl { public: static const int kRefreshPluginsMessage = WM_APP + 1; static const int kInstallMissingPluginMessage = WM_APP + 2; diff --git a/webkit/glue/plugins/gtk_plugin_container_manager.h b/webkit/glue/plugins/gtk_plugin_container_manager.h index 54ce819..8526efb 100644 --- a/webkit/glue/plugins/gtk_plugin_container_manager.h +++ b/webkit/glue/plugins/gtk_plugin_container_manager.h @@ -8,7 +8,7 @@ #include <gtk/gtk.h> #include <map> -#include "base/gfx/native_widget_types.h" +#include "app/gfx/native_widget_types.h" typedef struct _GtkWidget GtkWidget; diff --git a/webkit/glue/plugins/plugin_instance.h b/webkit/glue/plugins/plugin_instance.h index 2261ab4..24dd090 100644 --- a/webkit/glue/plugins/plugin_instance.h +++ b/webkit/glue/plugins/plugin_instance.h @@ -12,9 +12,9 @@ #include <vector> #include <stack> +#include "app/gfx/native_widget_types.h" #include "base/basictypes.h" #include "base/file_path.h" -#include "base/gfx/native_widget_types.h" #include "base/ref_counted.h" #include "base/scoped_ptr.h" #include "webkit/glue/plugins/nphostapi.h" diff --git a/webkit/glue/plugins/webplugin_delegate_impl.h b/webkit/glue/plugins/webplugin_delegate_impl.h index 0413fb4ce..aa43a54 100644 --- a/webkit/glue/plugins/webplugin_delegate_impl.h +++ b/webkit/glue/plugins/webplugin_delegate_impl.h @@ -10,8 +10,8 @@ #include <string> #include <list> +#include "app/gfx/native_widget_types.h" #include "base/file_path.h" -#include "base/gfx/native_widget_types.h" #include "base/gfx/rect.h" #include "base/ref_counted.h" #include "base/task.h" diff --git a/webkit/glue/webplugin.h b/webkit/glue/webplugin.h index 3ab6d35..1cb24d5 100644 --- a/webkit/glue/webplugin.h +++ b/webkit/glue/webplugin.h @@ -8,9 +8,9 @@ #include <string> #include <vector> +#include "app/gfx/native_widget_types.h" #include "base/basictypes.h" #include "base/gfx/rect.h" -#include "base/gfx/native_widget_types.h" // TODO(port): this typedef is obviously incorrect on non-Windows // platforms, but now a lot of code now accidentally depends on them diff --git a/webkit/glue/webplugin_delegate.h b/webkit/glue/webplugin_delegate.h index db9df41..2481a61 100644 --- a/webkit/glue/webplugin_delegate.h +++ b/webkit/glue/webplugin_delegate.h @@ -7,7 +7,7 @@ #include <string> -#include "base/gfx/native_widget_types.h" +#include "app/gfx/native_widget_types.h" #include "base/string16.h" #include "third_party/npapi/bindings/npapi.h" diff --git a/webkit/glue/webplugin_impl.h b/webkit/glue/webplugin_impl.h index 44133b2..3be1afd 100644 --- a/webkit/glue/webplugin_impl.h +++ b/webkit/glue/webplugin_impl.h @@ -9,8 +9,8 @@ #include <map> #include <vector> +#include "app/gfx/native_widget_types.h" #include "base/basictypes.h" -#include "base/gfx/native_widget_types.h" #include "base/linked_ptr.h" #include "base/task.h" #include "base/weak_ptr.h" diff --git a/webkit/glue/webplugin_page_delegate.h b/webkit/glue/webplugin_page_delegate.h index 656a7f0..25be5ec 100644 --- a/webkit/glue/webplugin_page_delegate.h +++ b/webkit/glue/webplugin_page_delegate.h @@ -5,7 +5,7 @@ #ifndef WEBKIT_GLUE_WEBPLUGIN_PAGE_DELEGATE_ #define WEBKIT_GLUE_WEBPLUGIN_PAGE_DELEGATE_ -#include "base/gfx/native_widget_types.h" +#include "app/gfx/native_widget_types.h" class GURL; diff --git a/webkit/tools/test_shell/foreground_helper.h b/webkit/tools/test_shell/foreground_helper.h index a687c0d..146a8f0 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 "base/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 base::WindowImpl { +class ForegroundHelper : public app::WindowImpl { public: BEGIN_MSG_MAP_EX(ForegroundHelper) MESSAGE_HANDLER(WM_HOTKEY, OnHotKey) diff --git a/webkit/tools/test_shell/test_shell.h b/webkit/tools/test_shell/test_shell.h index 1b7502b..aa25368 100644 --- a/webkit/tools/test_shell/test_shell.h +++ b/webkit/tools/test_shell/test_shell.h @@ -31,8 +31,8 @@ #include <string> #include <list> +#include "app/gfx/native_widget_types.h" #include "base/basictypes.h" -#include "base/gfx/native_widget_types.h" #if defined(OS_MACOSX) #include "base/lazy_instance.h" #endif diff --git a/webkit/tools/test_shell/test_webview_delegate.cc b/webkit/tools/test_shell/test_webview_delegate.cc index 68fc4af..1a197d2 100644 --- a/webkit/tools/test_shell/test_webview_delegate.cc +++ b/webkit/tools/test_shell/test_webview_delegate.cc @@ -12,9 +12,9 @@ #include "webkit/tools/test_shell/test_webview_delegate.h" +#include "app/gfx/native_widget_types.h" #include "base/file_util.h" #include "base/gfx/point.h" -#include "base/gfx/native_widget_types.h" #include "base/message_loop.h" #include "base/process_util.h" #include "base/string_util.h" diff --git a/webkit/tools/test_shell/test_webview_delegate_win.cc b/webkit/tools/test_shell/test_webview_delegate_win.cc index ff790b1..8d0f291 100644 --- a/webkit/tools/test_shell/test_webview_delegate_win.cc +++ b/webkit/tools/test_shell/test_webview_delegate_win.cc @@ -13,7 +13,7 @@ #include <shlwapi.h> #include "app/gfx/gdi_util.h" -#include "base/gfx/native_widget_types.h" +#include "app/gfx/native_widget_types.h" #include "base/gfx/point.h" #include "base/message_loop.h" #include "base/string_util.h" diff --git a/webkit/tools/test_shell/webview_host.h b/webkit/tools/test_shell/webview_host.h index 0fd8490..ebc7ab9 100644 --- a/webkit/tools/test_shell/webview_host.h +++ b/webkit/tools/test_shell/webview_host.h @@ -7,8 +7,8 @@ #include <map> +#include "app/gfx/native_widget_types.h" #include "base/basictypes.h" -#include "base/gfx/native_widget_types.h" #include "base/gfx/rect.h" #include "webkit/tools/test_shell/webwidget_host.h" #if defined(OS_LINUX) diff --git a/webkit/tools/test_shell/webwidget_host.h b/webkit/tools/test_shell/webwidget_host.h index 9f4a13c..b899f96 100644 --- a/webkit/tools/test_shell/webwidget_host.h +++ b/webkit/tools/test_shell/webwidget_host.h @@ -5,8 +5,8 @@ #ifndef WEBKIT_TOOLS_TEST_SHELL_WEBWIDGET_HOST_H_ #define WEBKIT_TOOLS_TEST_SHELL_WEBWIDGET_HOST_H_ +#include "app/gfx/native_widget_types.h" #include "base/basictypes.h" -#include "base/gfx/native_widget_types.h" #include "base/gfx/rect.h" #include "base/scoped_ptr.h" #include "skia/ext/platform_canvas.h" |