| 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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 // NotificationObserver method: | 106 // NotificationObserver method: |
| 107 void Observe(int type, | 107 void Observe(int type, |
| 108 const NotificationSource& source, | 108 const NotificationSource& source, |
| 109 const NotificationDetails& details) override; | 109 const NotificationDetails& details) override; |
| 110 | 110 |
| 111 // RenderFrameHostDelegate implementation: | 111 // RenderFrameHostDelegate implementation: |
| 112 bool OnMessageReceived(RenderFrameHost* render_frame_host, | 112 bool OnMessageReceived(RenderFrameHost* render_frame_host, |
| 113 const IPC::Message& message) override; | 113 const IPC::Message& message) override; |
| 114 void RenderFrameCreated(RenderFrameHost* render_frame_host) override; | 114 void RenderFrameCreated(RenderFrameHost* render_frame_host) override; |
| 115 void UpdateTitle(RenderFrameHost* render_frame_host, | 115 void UpdateTitle(RenderFrameHost* render_frame_host, |
| 116 int32_t page_id, | |
| 117 const base::string16& title, | 116 const base::string16& title, |
| 118 base::i18n::TextDirection title_direction) override; | 117 base::i18n::TextDirection title_direction) override; |
| 119 InterstitialPage* GetAsInterstitialPage() override; | 118 InterstitialPage* GetAsInterstitialPage() override; |
| 120 AccessibilityMode GetAccessibilityMode() const override; | 119 AccessibilityMode GetAccessibilityMode() const override; |
| 121 void Cut() override; | 120 void Cut() override; |
| 122 void Copy() override; | 121 void Copy() override; |
| 123 void Paste() override; | 122 void Paste() override; |
| 124 void SelectAll() override; | 123 void SelectAll() override; |
| 125 | 124 |
| 126 // RenderViewHostDelegate implementation: | 125 // RenderViewHostDelegate implementation: |
| (...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 308 scoped_refptr<SessionStorageNamespace> session_storage_namespace_; | 307 scoped_refptr<SessionStorageNamespace> session_storage_namespace_; |
| 309 | 308 |
| 310 base::WeakPtrFactory<InterstitialPageImpl> weak_ptr_factory_; | 309 base::WeakPtrFactory<InterstitialPageImpl> weak_ptr_factory_; |
| 311 | 310 |
| 312 DISALLOW_COPY_AND_ASSIGN(InterstitialPageImpl); | 311 DISALLOW_COPY_AND_ASSIGN(InterstitialPageImpl); |
| 313 }; | 312 }; |
| 314 | 313 |
| 315 } // namespace content | 314 } // namespace content |
| 316 | 315 |
| 317 #endif // CONTENT_BROWSER_FRAME_HOST_INTERSTITIAL_PAGE_IMPL_H_ | 316 #endif // CONTENT_BROWSER_FRAME_HOST_INTERSTITIAL_PAGE_IMPL_H_ |
| OLD | NEW |