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/glue | |
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/glue')
-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 |
7 files changed, 7 insertions, 7 deletions
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; |