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

Unified Diff: content/browser/browser_plugin/old/browser_plugin_host_helper.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 | « content/browser/browser_plugin/old/browser_plugin_host.cc ('k') | content/common/browser_plugin_messages.h » ('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_helper.cc
diff --git a/content/browser/browser_plugin/old/browser_plugin_host_helper.cc b/content/browser/browser_plugin/old/browser_plugin_host_helper.cc
index 794aed4f1625ef0891009426eca57ba254c33fb9..c67517cb739eacb3bbdd9df0cea47b9cdbc4aff8 100644
--- a/content/browser/browser_plugin/old/browser_plugin_host_helper.cc
+++ b/content/browser/browser_plugin/old/browser_plugin_host_helper.cc
@@ -5,7 +5,7 @@
#include "content/browser/browser_plugin/old/browser_plugin_host_helper.h"
#include "content/browser/browser_plugin/old/browser_plugin_host.h"
-#include "content/common/browser_plugin_messages.h"
+#include "content/common/old_browser_plugin_messages.h"
#include "content/public/browser/render_view_host.h"
#include "content/public/browser/render_widget_host_view.h"
#include "ui/gfx/size.h"
@@ -26,11 +26,11 @@ BrowserPluginHostHelper::~BrowserPluginHostHelper() {
bool BrowserPluginHostHelper::OnMessageReceived(const IPC::Message& message) {
bool handled = true;
IPC_BEGIN_MESSAGE_MAP(BrowserPluginHostHelper, message)
- IPC_MESSAGE_HANDLER(BrowserPluginHostMsg_ConnectToChannel,
+ IPC_MESSAGE_HANDLER(OldBrowserPluginHostMsg_ConnectToChannel,
OnConnectToChannel)
- IPC_MESSAGE_HANDLER(BrowserPluginHostMsg_NavigateFromEmbedder,
+ IPC_MESSAGE_HANDLER(OldBrowserPluginHostMsg_NavigateFromEmbedder,
OnNavigateGuestFromEmbedder)
- IPC_MESSAGE_HANDLER(BrowserPluginHostMsg_ResizeGuest, OnResizeGuest)
+ IPC_MESSAGE_HANDLER(OldBrowserPluginHostMsg_ResizeGuest, OnResizeGuest)
IPC_MESSAGE_UNHANDLED(handled = false)
IPC_END_MESSAGE_MAP()
return handled;
« no previous file with comments | « content/browser/browser_plugin/old/browser_plugin_host.cc ('k') | content/common/browser_plugin_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698