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

Unified Diff: content/renderer/browser_plugin/browser_plugin.cc

Issue 11968054: <webview>: Implement ExecuteScript (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Renamed misnamed variable Created 7 years, 11 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/renderer/browser_plugin/browser_plugin.cc
diff --git a/content/renderer/browser_plugin/browser_plugin.cc b/content/renderer/browser_plugin/browser_plugin.cc
index 64b18820671c123d1df68c6e62678bb1f10d7e5c..4ada396b2ee503b547fdc53f9326cb74f7e9b03e 100644
--- a/content/renderer/browser_plugin/browser_plugin.cc
+++ b/content/renderer/browser_plugin/browser_plugin.cc
@@ -124,6 +124,7 @@ BrowserPlugin::BrowserPlugin(
min_height_(0),
min_width_(0),
process_id_(-1),
+ guest_route_id_(-1),
persist_storage_(false),
valid_partition_id_(true),
content_window_routing_id_(MSG_ROUTING_NONE),
@@ -398,6 +399,7 @@ void BrowserPlugin::OnLoadCommit(
UpdateDOMAttribute(kSrc, src_.c_str());
}
process_id_ = params.process_id;
+ guest_route_id_ = params.route_id;
current_nav_entry_index_ = params.current_entry_index;
nav_entry_count_ = params.entry_count;

Powered by Google App Engine
This is Rietveld 408576698