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

Unified Diff: content/browser/browser_plugin/browser_plugin_guest.cc

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/browser/browser_plugin/browser_plugin_guest.cc
diff --git a/content/browser/browser_plugin/browser_plugin_guest.cc b/content/browser/browser_plugin/browser_plugin_guest.cc
index ed103b0afeb3d29b14f363f325767e05a3243379..493dd2df2f8555c12cd3d8c32fb8cba531b3e2dc 100644
--- a/content/browser/browser_plugin/browser_plugin_guest.cc
+++ b/content/browser/browser_plugin/browser_plugin_guest.cc
@@ -395,7 +395,6 @@ void BrowserPluginGuest::SendMessageToEmbedder(IPC::Message* msg) {
pending_messages_.push_back(linked_ptr<IPC::Message>(msg));
return;
}
- msg->set_routing_id(owner_web_contents_->GetRoutingID());
lazyboy 2014/12/16 23:57:30 The comment about this routing_id in browser_plugi
Charlie Reis 2014/12/17 00:06:44 What is it set to instead? (Is this still for rou
Fady Samuel 2014/12/17 19:30:35 These messages are control messages now. All Brows
Fady Samuel 2014/12/17 19:30:35 Done.
owner_web_contents_->Send(msg);
}

Powered by Google App Engine
This is Rietveld 408576698