| Index: chrome/plugin/webplugin_proxy.h
|
| ===================================================================
|
| --- chrome/plugin/webplugin_proxy.h (revision 25381)
|
| +++ chrome/plugin/webplugin_proxy.h (working copy)
|
| @@ -28,9 +28,7 @@
|
| class WaitableEvent;
|
| }
|
|
|
| -namespace webkit_glue {
|
| -class WebPluginDelegate;
|
| -}
|
| +class WebPluginDelegateImpl;
|
|
|
| // This is an implementation of WebPlugin that proxies all calls to the
|
| // renderer.
|
| @@ -43,7 +41,7 @@
|
| const GURL& page_url);
|
| ~WebPluginProxy();
|
|
|
| - void set_delegate(webkit_glue::WebPluginDelegate* d) { delegate_ = d; }
|
| + void set_delegate(WebPluginDelegateImpl* d) { delegate_ = d; }
|
|
|
| // WebPlugin overrides
|
| void SetWindow(gfx::PluginWindowHandle window);
|
| @@ -165,7 +163,7 @@
|
| uint32 cp_browsing_context_;
|
| NPObject* window_npobject_;
|
| NPObject* plugin_element_;
|
| - webkit_glue::WebPluginDelegate* delegate_;
|
| + WebPluginDelegateImpl* delegate_;
|
| gfx::Rect damaged_rect_;
|
| bool waiting_for_paint_;
|
| scoped_ptr<base::WaitableEvent> modal_dialog_event_;
|
|
|