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

Unified Diff: content/renderer/render_view_impl.h

Issue 801173002: Fix message routing for BrowserPlugin in iframe (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: More cleanup Created 6 years 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/renderer/render_view_impl.h
diff --git a/content/renderer/render_view_impl.h b/content/renderer/render_view_impl.h
index 23b1a0a9984ebd76711d135eabb6c3650e164c6a..c5b9a89004b72b0caeb2b4dc642d0fa286e75338 100644
--- a/content/renderer/render_view_impl.h
+++ b/content/renderer/render_view_impl.h
@@ -121,7 +121,6 @@ class WebHitTestResult;
namespace content {
-class BrowserPluginManager;
class DevToolsAgent;
class DocumentState;
class HistoryController;
@@ -204,9 +203,6 @@ class CONTENT_EXPORT RenderViewImpl
return history_controller_.get();
}
- // Lazily initialize this view's BrowserPluginManager and return it.
- BrowserPluginManager* GetBrowserPluginManager();
-
// Functions to add and remove observers for this object.
void AddObserver(RenderViewObserver* observer);
void RemoveObserver(RenderViewObserver* observer);
@@ -961,9 +957,6 @@ class CONTENT_EXPORT RenderViewImpl
// initialized.
SpeechRecognitionDispatcher* speech_recognition_dispatcher_;
- // BrowserPluginManager attached to this view; lazily initialized.
- scoped_refptr<BrowserPluginManager> browser_plugin_manager_;
-
DevToolsAgent* devtools_agent_;
// Mouse Lock dispatcher attached to this view.

Powered by Google App Engine
This is Rietveld 408576698