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

Unified Diff: content/browser/web_contents/web_contents_impl.cc

Issue 10826192: Browser Plugin: Rename WebContentsImpl::browser_plugin_host() to WebContentsImpl::old_browser_plugi… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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
« no previous file with comments | « content/browser/web_contents/web_contents_impl.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/web_contents/web_contents_impl.cc
diff --git a/content/browser/web_contents/web_contents_impl.cc b/content/browser/web_contents/web_contents_impl.cc
index 16b7519bfcdfafbd6f85e0ba9f7373610c890b61..0635096742d3525b6f925f3083533255d7d96f46 100644
--- a/content/browser/web_contents/web_contents_impl.cc
+++ b/content/browser/web_contents/web_contents_impl.cc
@@ -375,7 +375,7 @@ WebContentsImpl::WebContentsImpl(
new JavaBridgeDispatcherHostManager(this));
#endif
- browser_plugin_host_.reset(new content::old::BrowserPluginHost(this));
+ old_browser_plugin_host_.reset(new content::old::BrowserPluginHost(this));
}
WebContentsImpl::~WebContentsImpl() {
@@ -3151,8 +3151,8 @@ void WebContentsImpl::GetBrowserPluginEmbedderInfo(
std::string* embedder_channel_name,
int* embedder_container_id) {
content::RenderProcessHost* embedder_render_process_host =
- browser_plugin_host()->embedder_render_process_host();
- *embedder_container_id = browser_plugin_host()->instance_id();
+ old_browser_plugin_host()->embedder_render_process_host();
+ *embedder_container_id = old_browser_plugin_host()->instance_id();
int embedder_process_id =
embedder_render_process_host ? embedder_render_process_host->GetID() : -1;
if (embedder_process_id != -1) {
« no previous file with comments | « content/browser/web_contents/web_contents_impl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698