From 83d0e2ba3c024eda4291c505300217e7ad8d7ba0 Mon Sep 17 00:00:00 2001 From: "evan@chromium.org" Date: Fri, 26 Jun 2009 01:13:45 +0000 Subject: Revert all of my patches from today. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19328 0039d316-1c4b-4281-b951-d872f2087c98 --- webkit/glue/plugins/plugin_instance.h | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'webkit/glue/plugins/plugin_instance.h') diff --git a/webkit/glue/plugins/plugin_instance.h b/webkit/glue/plugins/plugin_instance.h index ba8824f8..e73d49f 100644 --- a/webkit/glue/plugins/plugin_instance.h +++ b/webkit/glue/plugins/plugin_instance.h @@ -70,10 +70,8 @@ class PluginInstance : public base::RefCountedThreadSafe { NPP npp() { return npp_; } // Get/Set for the instance's window handle. - gfx::PluginWindowHandle window_handle() const { return window_handle_; } - void set_window_handle(gfx::PluginWindowHandle value) { - window_handle_ = value; - } + gfx::NativeView window_handle() { return window_handle_; } + void set_window_handle(gfx::NativeView value) { window_handle_ = value; } // Get/Set whether this instance is in Windowless mode. // Default is false. @@ -225,7 +223,7 @@ class PluginInstance : public base::RefCountedThreadSafe { scoped_refptr host_; NPPluginFuncs* npp_functions_; std::vector > open_streams_; - gfx::PluginWindowHandle window_handle_; + gfx::NativeView window_handle_; bool windowless_; bool transparent_; WebPlugin* webplugin_; -- cgit v1.1