Index: content/public/browser/content_browser_client.h |
diff --git a/content/public/browser/content_browser_client.h b/content/public/browser/content_browser_client.h |
index e5c99223b423b2828f9aeb0273994ea55b915090..18976390c16b3ae327bedc94cea83011874450a0 100644 |
--- a/content/public/browser/content_browser_client.h |
+++ b/content/public/browser/content_browser_client.h |
@@ -497,7 +497,9 @@ class CONTENT_EXPORT ContentBrowserClient { |
// type. If true is returned, |no_javascript_access| will indicate whether |
// the window that is created should be scriptable/in the same process. |
// This is called on the IO thread. |
- virtual bool CanCreateWindow(const GURL& opener_url, |
+ virtual bool CanCreateWindow(int opener_render_process_id, |
+ int opener_render_frame_id, |
+ const GURL& opener_url, |
const GURL& opener_top_level_frame_url, |
const GURL& source_origin, |
WindowContainerType container_type, |
@@ -509,9 +511,6 @@ class CONTENT_EXPORT ContentBrowserClient { |
bool user_gesture, |
bool opener_suppressed, |
ResourceContext* context, |
- int render_process_id, |
- int opener_render_view_id, |
- int opener_render_frame_id, |
bool* no_javascript_access); |
// Notifies the embedder that the ResourceDispatcherHost has been created. |