summaryrefslogtreecommitdiffstats
path: root/webkit/glue
diff options
context:
space:
mode:
authorben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-17 06:40:57 +0000
committerben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-17 06:40:57 +0000
commit5c7293a73bdaedbe368bc26426a2345f230f2822 (patch)
tree9a5c28a66102e61536730d8335843c14ae5e0a10 /webkit/glue
parentaf63c908603f8a2f58f69167129f819d5d30820c (diff)
downloadchromium_src-5c7293a73bdaedbe368bc26426a2345f230f2822.zip
chromium_src-5c7293a73bdaedbe368bc26426a2345f230f2822.tar.gz
chromium_src-5c7293a73bdaedbe368bc26426a2345f230f2822.tar.bz2
Move some more files to toplevel gfx dir.
TBR=darin BUG=none TEST=none git-svn-id: svn://svn.chromium.org/chrome/trunk/src@41812 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue')
-rw-r--r--webkit/glue/plugins/gtk_plugin_container_manager.cc2
-rw-r--r--webkit/glue/plugins/gtk_plugin_container_manager.h2
-rw-r--r--webkit/glue/plugins/plugin_instance.h2
-rw-r--r--webkit/glue/plugins/webplugin_delegate_impl.h2
-rw-r--r--webkit/glue/plugins/webplugin_delegate_impl_gtk.cc2
-rw-r--r--webkit/glue/webplugin.h2
-rw-r--r--webkit/glue/webplugin_delegate.h2
-rw-r--r--webkit/glue/webplugin_impl.h2
-rw-r--r--webkit/glue/webplugin_page_delegate.h2
9 files changed, 9 insertions, 9 deletions
diff --git a/webkit/glue/plugins/gtk_plugin_container_manager.cc b/webkit/glue/plugins/gtk_plugin_container_manager.cc
index 2bc9f40..53b6f4d 100644
--- a/webkit/glue/plugins/gtk_plugin_container_manager.cc
+++ b/webkit/glue/plugins/gtk_plugin_container_manager.cc
@@ -6,8 +6,8 @@
#include <gtk/gtk.h>
-#include "app/gfx/gtk_util.h"
#include "base/logging.h"
+#include "gfx/gtk_util.h"
#include "webkit/glue/plugins/gtk_plugin_container.h"
#include "webkit/glue/webplugin.h"
diff --git a/webkit/glue/plugins/gtk_plugin_container_manager.h b/webkit/glue/plugins/gtk_plugin_container_manager.h
index 8526efb..c33099d 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 "app/gfx/native_widget_types.h"
+#include "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 3e689c4..bd3a0d7 100644
--- a/webkit/glue/plugins/plugin_instance.h
+++ b/webkit/glue/plugins/plugin_instance.h
@@ -14,11 +14,11 @@
#include <string>
#include <vector>
-#include "app/gfx/native_widget_types.h"
#include "base/basictypes.h"
#include "base/file_path.h"
#include "base/ref_counted.h"
#include "base/scoped_ptr.h"
+#include "gfx/native_widget_types.h"
#include "gfx/point.h"
#include "gfx/rect.h"
#include "googleurl/src/gurl.h"
diff --git a/webkit/glue/plugins/webplugin_delegate_impl.h b/webkit/glue/plugins/webplugin_delegate_impl.h
index ac0168b..99fadde 100644
--- a/webkit/glue/plugins/webplugin_delegate_impl.h
+++ b/webkit/glue/plugins/webplugin_delegate_impl.h
@@ -11,11 +11,11 @@
#include <list>
#include <set>
-#include "app/gfx/native_widget_types.h"
#include "base/file_path.h"
#include "base/ref_counted.h"
#include "base/task.h"
#include "base/timer.h"
+#include "gfx/native_widget_types.h"
#include "gfx/rect.h"
#include "third_party/npapi/bindings/npapi.h"
#include "webkit/glue/webcursor.h"
diff --git a/webkit/glue/plugins/webplugin_delegate_impl_gtk.cc b/webkit/glue/plugins/webplugin_delegate_impl_gtk.cc
index 6c267e9..2c6b239 100644
--- a/webkit/glue/plugins/webplugin_delegate_impl_gtk.cc
+++ b/webkit/glue/plugins/webplugin_delegate_impl_gtk.cc
@@ -10,13 +10,13 @@
#include <gtk/gtk.h>
#include <gdk/gdkx.h>
-#include "app/gfx/blit.h"
#include "base/basictypes.h"
#include "base/file_util.h"
#include "base/message_loop.h"
#include "base/process_util.h"
#include "base/stats_counters.h"
#include "base/string_util.h"
+#include "gfx/blit.h"
#include "skia/ext/platform_canvas.h"
#include "third_party/WebKit/WebKit/chromium/public/WebCursorInfo.h"
#include "third_party/WebKit/WebKit/chromium/public/WebInputEvent.h"
diff --git a/webkit/glue/webplugin.h b/webkit/glue/webplugin.h
index 1bd6c61..cde5fce 100644
--- a/webkit/glue/webplugin.h
+++ b/webkit/glue/webplugin.h
@@ -8,8 +8,8 @@
#include <string>
#include <vector>
-#include "app/gfx/native_widget_types.h"
#include "base/basictypes.h"
+#include "gfx/native_widget_types.h"
#include "gfx/rect.h"
// TODO(port): this typedef is obviously incorrect on non-Windows
diff --git a/webkit/glue/webplugin_delegate.h b/webkit/glue/webplugin_delegate.h
index 8285d6c..343f486 100644
--- a/webkit/glue/webplugin_delegate.h
+++ b/webkit/glue/webplugin_delegate.h
@@ -8,9 +8,9 @@
#include <string>
#include <vector>
-#include "app/gfx/native_widget_types.h"
#include "base/string16.h"
#include "build/build_config.h"
+#include "gfx/native_widget_types.h"
#include "third_party/npapi/bindings/npapi.h"
#include "third_party/npapi/bindings/npapi_extensions.h"
#include "third_party/WebKit/WebKit/chromium/public/WebCanvas.h"
diff --git a/webkit/glue/webplugin_impl.h b/webkit/glue/webplugin_impl.h
index 5d6c49c..d2eb64b 100644
--- a/webkit/glue/webplugin_impl.h
+++ b/webkit/glue/webplugin_impl.h
@@ -9,11 +9,11 @@
#include <map>
#include <vector>
-#include "app/gfx/native_widget_types.h"
#include "base/basictypes.h"
#include "base/linked_ptr.h"
#include "base/task.h"
#include "base/weak_ptr.h"
+#include "gfx/native_widget_types.h"
#include "googleurl/src/gurl.h"
#include "third_party/WebKit/WebKit/chromium/public/WebPlugin.h"
#include "third_party/WebKit/WebKit/chromium/public/WebRect.h"
diff --git a/webkit/glue/webplugin_page_delegate.h b/webkit/glue/webplugin_page_delegate.h
index 58f6da6..8bc5723 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 "app/gfx/native_widget_types.h"
+#include "gfx/native_widget_types.h"
class GURL;