Index: content/public/browser/content_browser_client.cc |
=================================================================== |
--- content/public/browser/content_browser_client.cc (revision 198276) |
+++ content/public/browser/content_browser_client.cc (working copy) |
@@ -205,12 +205,14 @@ |
return WebKit::WebNotificationPresenter::PermissionAllowed; |
} |
-bool ContentBrowserClient::CanCreateWindow(const GURL& opener_url, |
- const GURL& origin, |
- WindowContainerType container_type, |
- ResourceContext* context, |
- int render_process_id, |
- bool* no_javascript_access) { |
+bool ContentBrowserClient::CanCreateWindow( |
+ const GURL& opener_url, |
+ const GURL& origin, |
+ WindowContainerType container_type, |
+ const WebKit::WindowFeatures& web_window_features, |
+ ResourceContext* context, |
+ int render_process_id, |
+ bool* no_javascript_access) { |
*no_javascript_access = false; |
return true; |
} |