| 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 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 275 // Our RenderViewHostViewDelegate, necessary for accelerators to work. | 275 // Our RenderViewHostViewDelegate, necessary for accelerators to work. |
| 276 scoped_ptr<InterstitialPageRVHDelegateView> rvh_delegate_view_; | 276 scoped_ptr<InterstitialPageRVHDelegateView> rvh_delegate_view_; |
| 277 | 277 |
| 278 // Settings passed to the renderer. | 278 // Settings passed to the renderer. |
| 279 mutable RendererPreferences renderer_preferences_; | 279 mutable RendererPreferences renderer_preferences_; |
| 280 | 280 |
| 281 bool create_view_; | 281 bool create_view_; |
| 282 | 282 |
| 283 scoped_ptr<InterstitialPageDelegate> delegate_; | 283 scoped_ptr<InterstitialPageDelegate> delegate_; |
| 284 | 284 |
| 285 scoped_refptr<SessionStorageNamespace> session_storage_namespace_; |
| 286 |
| 285 base::WeakPtrFactory<InterstitialPageImpl> weak_ptr_factory_; | 287 base::WeakPtrFactory<InterstitialPageImpl> weak_ptr_factory_; |
| 286 | 288 |
| 287 scoped_refptr<SessionStorageNamespace> session_storage_namespace_; | |
| 288 | |
| 289 DISALLOW_COPY_AND_ASSIGN(InterstitialPageImpl); | 289 DISALLOW_COPY_AND_ASSIGN(InterstitialPageImpl); |
| 290 }; | 290 }; |
| 291 | 291 |
| 292 } // namespace content | 292 } // namespace content |
| 293 | 293 |
| 294 #endif // CONTENT_BROWSER_FRAME_HOST_INTERSTITIAL_PAGE_IMPL_H_ | 294 #endif // CONTENT_BROWSER_FRAME_HOST_INTERSTITIAL_PAGE_IMPL_H_ |
| OLD | NEW |