| 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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 int32_t render_view_route_id, | 122 int32_t render_view_route_id, |
| 123 int32_t main_frame_route_id, | 123 int32_t main_frame_route_id, |
| 124 int32_t main_frame_widget_route_id, | 124 int32_t main_frame_widget_route_id, |
| 125 const mojom::CreateNewWindowParams& params, | 125 const mojom::CreateNewWindowParams& params, |
| 126 SessionStorageNamespace* session_storage_namespace) override; | 126 SessionStorageNamespace* session_storage_namespace) override; |
| 127 void ShowCreatedWindow(int process_id, | 127 void ShowCreatedWindow(int process_id, |
| 128 int main_frame_widget_route_id, | 128 int main_frame_widget_route_id, |
| 129 WindowOpenDisposition disposition, | 129 WindowOpenDisposition disposition, |
| 130 const gfx::Rect& initial_rect, | 130 const gfx::Rect& initial_rect, |
| 131 bool user_gesture) override; | 131 bool user_gesture) override; |
| 132 void SetFocusedFrame(FrameTreeNode* node, SiteInstance* source) override; | |
| 133 | 132 |
| 134 // RenderViewHostDelegate implementation: | 133 // RenderViewHostDelegate implementation: |
| 135 RenderViewHostDelegateView* GetDelegateView() override; | 134 RenderViewHostDelegateView* GetDelegateView() override; |
| 136 bool OnMessageReceived(RenderViewHostImpl* render_view_host, | 135 bool OnMessageReceived(RenderViewHostImpl* render_view_host, |
| 137 const IPC::Message& message) override; | 136 const IPC::Message& message) override; |
| 138 const GURL& GetMainFrameLastCommittedURL() const override; | 137 const GURL& GetMainFrameLastCommittedURL() const override; |
| 139 void RenderViewTerminated(RenderViewHost* render_view_host, | 138 void RenderViewTerminated(RenderViewHost* render_view_host, |
| 140 base::TerminationStatus status, | 139 base::TerminationStatus status, |
| 141 int error_code) override; | 140 int error_code) override; |
| 142 RendererPreferences GetRendererPrefs( | 141 RendererPreferences GetRendererPrefs( |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 299 scoped_refptr<SessionStorageNamespace> session_storage_namespace_; | 298 scoped_refptr<SessionStorageNamespace> session_storage_namespace_; |
| 300 | 299 |
| 301 base::WeakPtrFactory<InterstitialPageImpl> weak_ptr_factory_; | 300 base::WeakPtrFactory<InterstitialPageImpl> weak_ptr_factory_; |
| 302 | 301 |
| 303 DISALLOW_COPY_AND_ASSIGN(InterstitialPageImpl); | 302 DISALLOW_COPY_AND_ASSIGN(InterstitialPageImpl); |
| 304 }; | 303 }; |
| 305 | 304 |
| 306 } // namespace content | 305 } // namespace content |
| 307 | 306 |
| 308 #endif // CONTENT_BROWSER_FRAME_HOST_INTERSTITIAL_PAGE_IMPL_H_ | 307 #endif // CONTENT_BROWSER_FRAME_HOST_INTERSTITIAL_PAGE_IMPL_H_ |
| OLD | NEW |