diff options
author | twiz@google.com <twiz@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-02 15:26:03 +0000 |
---|---|---|
committer | twiz@google.com <twiz@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-02 15:26:03 +0000 |
commit | 91ef7b0311e0bea576d5b935b2cd378e04c517ca (patch) | |
tree | 1cd46480b356f4b9abab094fc35d5d0b371dc547 /content/plugin | |
parent | 611db184a5eef589fcb5bfdd4e2ada8f019f8403 (diff) | |
download | chromium_src-91ef7b0311e0bea576d5b935b2cd378e04c517ca.zip chromium_src-91ef7b0311e0bea576d5b935b2cd378e04c517ca.tar.gz chromium_src-91ef7b0311e0bea576d5b935b2cd378e04c517ca.tar.bz2 |
First pass at removal of unneeded dependencies on skia\ext\platform_canvas.h
All 'low-hanging' platform_canvas.h dependencies have been removed, and replaced with skia-specific includes.
BUG=None
TEST=None
Review URL: http://codereview.chromium.org/7517020
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@95083 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/plugin')
-rw-r--r-- | content/plugin/webplugin_proxy.cc | 1 | ||||
-rw-r--r-- | content/plugin/webplugin_proxy.h | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/content/plugin/webplugin_proxy.cc b/content/plugin/webplugin_proxy.cc index 9b34568..809f12a 100644 --- a/content/plugin/webplugin_proxy.cc +++ b/content/plugin/webplugin_proxy.cc @@ -17,6 +17,7 @@ #include "content/plugin/npobject_util.h" #include "content/plugin/plugin_channel.h" #include "content/plugin/plugin_thread.h" +#include "skia/ext/platform_canvas.h" #include "skia/ext/platform_device.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebBindings.h" #include "ui/gfx/blit.h" diff --git a/content/plugin/webplugin_proxy.h b/content/plugin/webplugin_proxy.h index fee1ee0..757802a 100644 --- a/content/plugin/webplugin_proxy.h +++ b/content/plugin/webplugin_proxy.h @@ -27,6 +27,10 @@ class PluginChannel; +namespace skia { +class PlatformCanvas; +} + namespace webkit { namespace npapi { class WebPluginDelegateImpl; |