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

Unified Diff: content/renderer/render_view_impl.cc

Issue 15994016: Support custom window features, such as 'moo=foo'. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 7 years, 6 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/render_view_impl.cc
===================================================================
--- content/renderer/render_view_impl.cc (revision 198276)
+++ content/renderer/render_view_impl.cc (working copy)
@@ -1945,6 +1945,9 @@
return NULL;
ViewHostMsg_CreateWindow_Params params;
+ WebKit::WindowFeatures window_features(features);
+
+ params.window_features = window_features;
params.opener_id = routing_id_;
params.user_gesture = WebUserGestureIndicator::isProcessingUserGesture();
params.window_container_type = WindowFeaturesToContainerType(features);

Powered by Google App Engine
This is Rietveld 408576698