| 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> |
| 11 | 11 |
| 12 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
| 13 #include "base/macros.h" | 13 #include "base/macros.h" |
| 14 #include "base/memory/weak_ptr.h" | 14 #include "base/memory/weak_ptr.h" |
| 15 #include "build/build_config.h" | 15 #include "build/build_config.h" |
| 16 #include "content/browser/frame_host/frame_tree.h" | 16 #include "content/browser/frame_host/frame_tree.h" |
| 17 #include "content/browser/frame_host/navigator_delegate.h" | 17 #include "content/browser/frame_host/navigator_delegate.h" |
| 18 #include "content/browser/frame_host/render_frame_host_delegate.h" | 18 #include "content/browser/frame_host/render_frame_host_delegate.h" |
| 19 #include "content/browser/renderer_host/render_view_host_delegate.h" | 19 #include "content/browser/renderer_host/render_view_host_delegate.h" |
| 20 #include "content/browser/renderer_host/render_widget_host_delegate.h" | 20 #include "content/browser/renderer_host/render_widget_host_delegate.h" |
| 21 #include "content/public/browser/interstitial_page.h" | 21 #include "content/public/browser/interstitial_page.h" |
| 22 #include "content/public/browser/notification_observer.h" | 22 #include "content/public/browser/notification_observer.h" |
| 23 #include "content/public/browser/notification_registrar.h" | 23 #include "content/public/browser/notification_registrar.h" |
| 24 #include "content/public/browser/web_contents_observer.h" | 24 #include "content/public/browser/web_contents_observer.h" |
| 25 #include "content/public/common/renderer_preferences.h" | 25 #include "content/public/common/renderer_preferences.h" |
| 26 #include "url/gurl.h" | 26 #include "url/gurl.h" |
| 27 | 27 |
| 28 namespace content { | 28 namespace content { |
| 29 class NavigationEntry; | |
| 30 class NavigationControllerImpl; | 29 class NavigationControllerImpl; |
| 31 class RenderViewHostImpl; | 30 class RenderViewHostImpl; |
| 32 class RenderWidgetHostView; | 31 class RenderWidgetHostView; |
| 33 class TextInputManager; | 32 class TextInputManager; |
| 34 class WebContentsView; | 33 class WebContentsView; |
| 35 | 34 |
| 36 namespace mojom { | 35 namespace mojom { |
| 37 class CreateNewWindowParams; | 36 class CreateNewWindowParams; |
| 38 } | 37 } |
| 39 | 38 |
| (...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 295 scoped_refptr<SessionStorageNamespace> session_storage_namespace_; | 294 scoped_refptr<SessionStorageNamespace> session_storage_namespace_; |
| 296 | 295 |
| 297 base::WeakPtrFactory<InterstitialPageImpl> weak_ptr_factory_; | 296 base::WeakPtrFactory<InterstitialPageImpl> weak_ptr_factory_; |
| 298 | 297 |
| 299 DISALLOW_COPY_AND_ASSIGN(InterstitialPageImpl); | 298 DISALLOW_COPY_AND_ASSIGN(InterstitialPageImpl); |
| 300 }; | 299 }; |
| 301 | 300 |
| 302 } // namespace content | 301 } // namespace content |
| 303 | 302 |
| 304 #endif // CONTENT_BROWSER_FRAME_HOST_INTERSTITIAL_PAGE_IMPL_H_ | 303 #endif // CONTENT_BROWSER_FRAME_HOST_INTERSTITIAL_PAGE_IMPL_H_ |
| OLD | NEW |