Chromium Code Reviews| Index: content/browser/browser_plugin/browser_plugin_embedder.h |
| diff --git a/content/browser/browser_plugin/browser_plugin_embedder.h b/content/browser/browser_plugin/browser_plugin_embedder.h |
| index 3885f87a077320a9662334da9f4b38d4d8ac1875..3f48f0935381c1a68121fe027a7c314b8f3f5b82 100644 |
| --- a/content/browser/browser_plugin/browser_plugin_embedder.h |
| +++ b/content/browser/browser_plugin/browser_plugin_embedder.h |
| @@ -33,6 +33,7 @@ namespace content { |
| class BrowserPluginGuest; |
| class BrowserPluginGuestManager; |
|
lazyboy
2014/05/05 21:40:54
Remove.
Fady Samuel
2014/05/07 17:32:59
Done.
|
| +class BrowserPluginGuestManagerDelegate; |
| class BrowserPluginHostFactory; |
| class RenderWidgetHostImpl; |
| class WebContentsImpl; |
| @@ -88,19 +89,19 @@ class CONTENT_EXPORT BrowserPluginEmbedder : public WebContentsObserver { |
| explicit BrowserPluginEmbedder(WebContentsImpl* web_contents); |
| - BrowserPluginGuestManager* GetBrowserPluginGuestManager() const; |
| + BrowserPluginGuestManagerDelegate* GetBrowserPluginGuestManager() const; |
| - bool DidSendScreenRectsCallback(BrowserPluginGuest* guest); |
| + bool DidSendScreenRectsCallback(WebContents* guest_web_contents); |
| - bool SetZoomLevelCallback(double level, BrowserPluginGuest* guest); |
| + bool SetZoomLevelCallback(double level, WebContents* guest_web_contents); |
| bool UnlockMouseIfNecessaryCallback(const NativeWebKeyboardEvent& event, |
| - BrowserPluginGuest* guest); |
| + WebContents* guest); |
| void GuestCallback(int instance_id, |
| const BrowserPluginHostMsg_Attach_Params& params, |
| const base::DictionaryValue* extra_params, |
| - BrowserPluginGuest* guest); |
| + WebContents* guest_web_contents); |
| // Message handlers. |