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

Unified Diff: content/renderer/browser_plugin/old/browser_plugin.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/content_common.gypi ('k') | content/renderer/browser_plugin/old/browser_plugin_channel_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/browser_plugin/old/browser_plugin.cc
diff --git a/content/renderer/browser_plugin/old/browser_plugin.cc b/content/renderer/browser_plugin/old/browser_plugin.cc
index af340e7bbeff59dd03f1173693ee6cb5b857fb36..33e3b90801cd8728603682201eb4702a6f9a22aa 100644
--- a/content/renderer/browser_plugin/old/browser_plugin.cc
+++ b/content/renderer/browser_plugin/old/browser_plugin.cc
@@ -12,7 +12,7 @@
#include "base/string_piece.h"
#include "base/string_util.h"
#include "base/values.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/renderer/render_view_impl.h"
#include "ipc/ipc_channel_handle.h"
@@ -83,7 +83,7 @@ BrowserPlugin::BrowserPlugin(
ParseSrcAttribute("", &src);
if (!src.empty()) {
- render_view->Send(new BrowserPluginHostMsg_NavigateFromEmbedder(
+ render_view->Send(new OldBrowserPluginHostMsg_NavigateFromEmbedder(
render_view->GetRoutingID(),
id_,
frame->identifier(),
@@ -142,7 +142,7 @@ void BrowserPlugin::Replace(
PP_Instance instance = new_plugin->instance()->pp_instance();
ppapi::proxy::HostDispatcher* dispatcher =
ppapi::proxy::HostDispatcher::GetForInstance(instance);
- dispatcher->Send(new BrowserPluginMsg_GuestReady(instance, id_));
+ dispatcher->Send(new OldBrowserPluginMsg_GuestReady(instance, id_));
// TODO(fsamuel): We should delay the swapping out of the current plugin
// until after the guest's WebGraphicsContext3D has been initialized. That
« no previous file with comments | « content/content_common.gypi ('k') | content/renderer/browser_plugin/old/browser_plugin_channel_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698