| 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 "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 10 #include "base/memory/weak_ptr.h" | 10 #include "base/memory/weak_ptr.h" |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 virtual RendererPreferences GetRendererPrefs( | 114 virtual RendererPreferences GetRendererPrefs( |
| 115 BrowserContext* browser_context) const OVERRIDE; | 115 BrowserContext* browser_context) const OVERRIDE; |
| 116 virtual WebPreferences GetWebkitPrefs() OVERRIDE; | 116 virtual WebPreferences GetWebkitPrefs() OVERRIDE; |
| 117 virtual gfx::Rect GetRootWindowResizerRect() const OVERRIDE; | 117 virtual gfx::Rect GetRootWindowResizerRect() const OVERRIDE; |
| 118 virtual void CreateNewWindow( | 118 virtual void CreateNewWindow( |
| 119 int route_id, | 119 int route_id, |
| 120 int main_frame_route_id, | 120 int main_frame_route_id, |
| 121 const ViewHostMsg_CreateWindow_Params& params, | 121 const ViewHostMsg_CreateWindow_Params& params, |
| 122 SessionStorageNamespace* session_storage_namespace) OVERRIDE; | 122 SessionStorageNamespace* session_storage_namespace) OVERRIDE; |
| 123 virtual void CreateNewWidget(int route_id, | 123 virtual void CreateNewWidget(int route_id, |
| 124 WebKit::WebPopupType popup_type) OVERRIDE; | 124 blink::WebPopupType popup_type) OVERRIDE; |
| 125 virtual void CreateNewFullscreenWidget(int route_id) OVERRIDE; | 125 virtual void CreateNewFullscreenWidget(int route_id) OVERRIDE; |
| 126 virtual void ShowCreatedWindow(int route_id, | 126 virtual void ShowCreatedWindow(int route_id, |
| 127 WindowOpenDisposition disposition, | 127 WindowOpenDisposition disposition, |
| 128 const gfx::Rect& initial_pos, | 128 const gfx::Rect& initial_pos, |
| 129 bool user_gesture) OVERRIDE; | 129 bool user_gesture) OVERRIDE; |
| 130 virtual void ShowCreatedWidget(int route_id, | 130 virtual void ShowCreatedWidget(int route_id, |
| 131 const gfx::Rect& initial_pos) OVERRIDE; | 131 const gfx::Rect& initial_pos) OVERRIDE; |
| 132 virtual void ShowCreatedFullscreenWidget(int route_id) OVERRIDE; | 132 virtual void ShowCreatedFullscreenWidget(int route_id) OVERRIDE; |
| 133 | 133 |
| 134 virtual SessionStorageNamespace* GetSessionStorageNamespace( | 134 virtual SessionStorageNamespace* GetSessionStorageNamespace( |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 258 base::WeakPtrFactory<InterstitialPageImpl> weak_ptr_factory_; | 258 base::WeakPtrFactory<InterstitialPageImpl> weak_ptr_factory_; |
| 259 | 259 |
| 260 scoped_refptr<SessionStorageNamespace> session_storage_namespace_; | 260 scoped_refptr<SessionStorageNamespace> session_storage_namespace_; |
| 261 | 261 |
| 262 DISALLOW_COPY_AND_ASSIGN(InterstitialPageImpl); | 262 DISALLOW_COPY_AND_ASSIGN(InterstitialPageImpl); |
| 263 }; | 263 }; |
| 264 | 264 |
| 265 } // namespace content | 265 } // namespace content |
| 266 | 266 |
| 267 #endif // CONTENT_BROWSER_FRAME_HOST_INTERSTITIAL_PAGE_IMPL_H_ | 267 #endif // CONTENT_BROWSER_FRAME_HOST_INTERSTITIAL_PAGE_IMPL_H_ |
| OLD | NEW |