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 CONTENT_BROWSER_FRAME_HOST_INTERSTITIAL_PAGE_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_FRAME_HOST_INTERSTITIAL_PAGE_IMPL_H_ |
6 #define CONTENT_BROWSER_FRAME_HOST_INTERSTITIAL_PAGE_IMPL_H_ | 6 #define CONTENT_BROWSER_FRAME_HOST_INTERSTITIAL_PAGE_IMPL_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <memory> | 10 #include <memory> |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 const base::string16& title, | 113 const base::string16& title, |
114 base::i18n::TextDirection title_direction) override; | 114 base::i18n::TextDirection title_direction) override; |
115 InterstitialPage* GetAsInterstitialPage() override; | 115 InterstitialPage* GetAsInterstitialPage() override; |
116 AccessibilityMode GetAccessibilityMode() const override; | 116 AccessibilityMode GetAccessibilityMode() const override; |
117 void Cut() override; | 117 void Cut() override; |
118 void Copy() override; | 118 void Copy() override; |
119 void Paste() override; | 119 void Paste() override; |
120 void SelectAll() override; | 120 void SelectAll() override; |
121 void CreateNewWindow( | 121 void CreateNewWindow( |
122 SiteInstance* source_site_instance, | 122 SiteInstance* source_site_instance, |
| 123 RenderFrameHost* opener, |
123 int32_t render_view_route_id, | 124 int32_t render_view_route_id, |
124 int32_t main_frame_route_id, | 125 int32_t main_frame_route_id, |
125 int32_t main_frame_widget_route_id, | 126 int32_t main_frame_widget_route_id, |
126 const mojom::CreateNewWindowParams& params, | 127 const mojom::CreateNewWindowParams& params, |
127 SessionStorageNamespace* session_storage_namespace) override; | 128 SessionStorageNamespace* session_storage_namespace) override; |
128 void ShowCreatedWindow(int process_id, | 129 void ShowCreatedWindow(int process_id, |
129 int main_frame_widget_route_id, | 130 int main_frame_widget_route_id, |
130 WindowOpenDisposition disposition, | 131 WindowOpenDisposition disposition, |
131 const gfx::Rect& initial_rect, | 132 const gfx::Rect& initial_rect, |
132 bool user_gesture) override; | 133 bool user_gesture) override; |
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
301 scoped_refptr<SessionStorageNamespace> session_storage_namespace_; | 302 scoped_refptr<SessionStorageNamespace> session_storage_namespace_; |
302 | 303 |
303 base::WeakPtrFactory<InterstitialPageImpl> weak_ptr_factory_; | 304 base::WeakPtrFactory<InterstitialPageImpl> weak_ptr_factory_; |
304 | 305 |
305 DISALLOW_COPY_AND_ASSIGN(InterstitialPageImpl); | 306 DISALLOW_COPY_AND_ASSIGN(InterstitialPageImpl); |
306 }; | 307 }; |
307 | 308 |
308 } // namespace content | 309 } // namespace content |
309 | 310 |
310 #endif // CONTENT_BROWSER_FRAME_HOST_INTERSTITIAL_PAGE_IMPL_H_ | 311 #endif // CONTENT_BROWSER_FRAME_HOST_INTERSTITIAL_PAGE_IMPL_H_ |
OLD | NEW |