Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(777)

Unified Diff: content/browser/browser_plugin/browser_plugin_embedder.h

Issue 269113002: Remove BrowserPluginGuestManager (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@guestview_manager_createguest
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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.

Powered by Google App Engine
This is Rietveld 408576698