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

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

Issue 10965017: Browser Plugin: Implement getProcessId (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 3 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
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 374deec1ecc28b5ac3ede27f9ac94a7a8ef00eda..93ac0d714ec94d43934faea8c3debcae754297ee 100644
--- a/content/browser/browser_plugin/browser_plugin_guest.cc
+++ b/content/browser/browser_plugin/browser_plugin_guest.cc
@@ -253,7 +253,11 @@ void BrowserPluginGuest::DidCommitProvisionalLoadForFrame(
// Inform its embedder of the updated URL.
DCHECK(embedder_render_process_host());
lazyboy 2012/09/20 19:47:04 Sorry, this is from before though: this check shou
Fady Samuel 2012/09/20 21:58:05 Done.
if (is_main_frame)
- SendMessageToEmbedder(new BrowserPluginMsg_DidNavigate(instance_id(), url));
+ SendMessageToEmbedder(
+ new BrowserPluginMsg_DidNavigate(
+ instance_id(),
+ url,
+ render_view_host->GetProcess()->GetID()));
}
void BrowserPluginGuest::RenderViewGone(base::TerminationStatus status) {
« no previous file with comments | « no previous file | content/common/browser_plugin_messages.h » ('j') | content/renderer/browser_plugin/browser_plugin.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698