| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_UI_BLOCKED_CONTENT_BLOCKED_WINDOW_PARAMS_H_ | 5 #ifndef CHROME_BROWSER_UI_BLOCKED_CONTENT_BLOCKED_WINDOW_PARAMS_H_ |
| 6 #define CHROME_BROWSER_UI_BLOCKED_CONTENT_BLOCKED_WINDOW_PARAMS_H_ | 6 #define CHROME_BROWSER_UI_BLOCKED_CONTENT_BLOCKED_WINDOW_PARAMS_H_ |
| 7 | 7 |
| 8 #include "chrome/browser/ui/browser_navigator.h" | 8 #include "chrome/browser/ui/browser_navigator_params.h" |
| 9 #include "content/public/common/referrer.h" | 9 #include "content/public/common/referrer.h" |
| 10 #include "third_party/WebKit/public/web/WebWindowFeatures.h" | 10 #include "third_party/WebKit/public/web/WebWindowFeatures.h" |
| 11 #include "ui/base/window_open_disposition.h" | 11 #include "ui/base/window_open_disposition.h" |
| 12 #include "url/gurl.h" | 12 #include "url/gurl.h" |
| 13 | 13 |
| 14 namespace content { | 14 namespace content { |
| 15 class WebContents; | 15 class WebContents; |
| 16 } // namespace content | 16 } // namespace content |
| 17 | 17 |
| 18 class BlockedWindowParams { | 18 class BlockedWindowParams { |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 content::Referrer referrer_; | 50 content::Referrer referrer_; |
| 51 WindowOpenDisposition disposition_; | 51 WindowOpenDisposition disposition_; |
| 52 blink::WebWindowFeatures features_; | 52 blink::WebWindowFeatures features_; |
| 53 bool user_gesture_; | 53 bool user_gesture_; |
| 54 bool opener_suppressed_; | 54 bool opener_suppressed_; |
| 55 int render_process_id_; | 55 int render_process_id_; |
| 56 int opener_render_frame_id_; | 56 int opener_render_frame_id_; |
| 57 }; | 57 }; |
| 58 | 58 |
| 59 #endif // CHROME_BROWSER_UI_BLOCKED_CONTENT_BLOCKED_WINDOW_PARAMS_H_ | 59 #endif // CHROME_BROWSER_UI_BLOCKED_CONTENT_BLOCKED_WINDOW_PARAMS_H_ |
| OLD | NEW |