| Index: content/browser/browser_plugin/browser_plugin_embedder.cc
|
| diff --git a/content/browser/browser_plugin/browser_plugin_embedder.cc b/content/browser/browser_plugin/browser_plugin_embedder.cc
|
| index c7fc8ba2b528e38a802ff10ab51e7d7ea731197d..a3fe09ba7eb88f4117ff76a5318dabc3e692d145 100644
|
| --- a/content/browser/browser_plugin/browser_plugin_embedder.cc
|
| +++ b/content/browser/browser_plugin/browser_plugin_embedder.cc
|
| @@ -14,7 +14,7 @@
|
| #include "content/common/drag_messages.h"
|
| #include "content/common/gpu/gpu_messages.h"
|
| #include "content/public/browser/browser_context.h"
|
| -#include "content/public/browser/browser_plugin_guest_manager_delegate.h"
|
| +#include "content/public/browser/browser_plugin_guest_manager.h"
|
| #include "content/public/browser/content_browser_client.h"
|
| #include "content/public/browser/native_web_keyboard_event.h"
|
| #include "content/public/browser/render_view_host.h"
|
| @@ -66,9 +66,9 @@ WebContentsImpl* BrowserPluginEmbedder::GetWebContents() const {
|
| return static_cast<WebContentsImpl*>(web_contents());
|
| }
|
|
|
| -BrowserPluginGuestManagerDelegate*
|
| +BrowserPluginGuestManager*
|
| BrowserPluginEmbedder::GetBrowserPluginGuestManager() const {
|
| - return GetWebContents()->GetBrowserContext()->GetGuestManagerDelegate();
|
| + return GetWebContents()->GetBrowserContext()->GetGuestManager();
|
| }
|
|
|
| bool BrowserPluginEmbedder::DidSendScreenRectsCallback(
|
|
|