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

Unified Diff: content/browser/browser_plugin/old/browser_plugin_host.cc

Issue 10829074: Browser Plugin: Rename BrowserPluginMsg/BrowserPluginHostMsg to OldBrowserPluginMsg/OldBrowserPlugi… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed nits Created 8 years, 5 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 | « no previous file | content/browser/browser_plugin/old/browser_plugin_host_helper.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/browser_plugin/old/browser_plugin_host.cc
diff --git a/content/browser/browser_plugin/old/browser_plugin_host.cc b/content/browser/browser_plugin/old/browser_plugin_host.cc
index 9a6f365fb443a49e7c8a4c5c627fb9fc43d69113..53ea3847c92630e45762d8aa497e662cf0576a59 100644
--- a/content/browser/browser_plugin/old/browser_plugin_host.cc
+++ b/content/browser/browser_plugin/old/browser_plugin_host.cc
@@ -7,7 +7,7 @@
#include "content/browser/browser_plugin/old/browser_plugin_host_helper.h"
#include "content/browser/renderer_host/render_view_host_impl.h"
#include "content/browser/web_contents/web_contents_impl.h"
-#include "content/common/browser_plugin_messages.h"
+#include "content/common/old_browser_plugin_messages.h"
#include "content/public/common/url_constants.h"
#include "content/public/browser/notification_details.h"
#include "content/public/browser/notification_source.h"
@@ -58,14 +58,14 @@ void BrowserPluginHost::RegisterContainerInstance(
bool BrowserPluginHost::TakeFocus(bool reverse) {
embedder_render_process_host()->Send(
- new BrowserPluginMsg_AdvanceFocus(instance_id(), reverse));
+ new OldBrowserPluginMsg_AdvanceFocus(instance_id(), reverse));
return true;
}
bool BrowserPluginHost::OnMessageReceived(const IPC::Message& message) {
bool handled = true;
IPC_BEGIN_MESSAGE_MAP(BrowserPluginHost, message)
- IPC_MESSAGE_HANDLER(BrowserPluginHostMsg_NavigateFromGuest,
+ IPC_MESSAGE_HANDLER(OldBrowserPluginHostMsg_NavigateFromGuest,
OnNavigateFromGuest)
IPC_MESSAGE_UNHANDLED(handled = false)
IPC_END_MESSAGE_MAP()
@@ -137,7 +137,7 @@ void BrowserPluginHost::ConnectEmbedderToChannel(
// Tell the BrowserPlugin in the embedder that we're done and that it can
// begin using the guest renderer.
embedder_render_process_host()->Send(
- new BrowserPluginMsg_LoadGuest(
+ new OldBrowserPluginMsg_LoadGuest(
instance_id(),
render_view_host->GetProcess()->
GetID(),
« no previous file with comments | « no previous file | content/browser/browser_plugin/old/browser_plugin_host_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698