| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_TAB_CONTENTS_INTERSTITIAL_PAGE_H_ | 5 #ifndef CONTENT_BROWSER_TAB_CONTENTS_INTERSTITIAL_PAGE_H_ |
| 6 #define CONTENT_BROWSER_TAB_CONTENTS_INTERSTITIAL_PAGE_H_ | 6 #define CONTENT_BROWSER_TAB_CONTENTS_INTERSTITIAL_PAGE_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <map> | 9 #include <map> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 virtual View* GetViewDelegate() OVERRIDE; | 119 virtual View* GetViewDelegate() OVERRIDE; |
| 120 virtual const GURL& GetURL() const OVERRIDE; | 120 virtual const GURL& GetURL() const OVERRIDE; |
| 121 virtual void RenderViewGone(RenderViewHost* render_view_host, | 121 virtual void RenderViewGone(RenderViewHost* render_view_host, |
| 122 base::TerminationStatus status, | 122 base::TerminationStatus status, |
| 123 int error_code) OVERRIDE; | 123 int error_code) OVERRIDE; |
| 124 virtual void DidNavigate( | 124 virtual void DidNavigate( |
| 125 RenderViewHost* render_view_host, | 125 RenderViewHost* render_view_host, |
| 126 const ViewHostMsg_FrameNavigate_Params& params) OVERRIDE; | 126 const ViewHostMsg_FrameNavigate_Params& params) OVERRIDE; |
| 127 virtual void UpdateTitle(RenderViewHost* render_view_host, | 127 virtual void UpdateTitle(RenderViewHost* render_view_host, |
| 128 int32 page_id, | 128 int32 page_id, |
| 129 const string16& title) OVERRIDE; | 129 const string16& title, |
| 130 base::i18n::TextDirection title_direction) OVERRIDE; |
| 130 virtual RendererPreferences GetRendererPrefs( | 131 virtual RendererPreferences GetRendererPrefs( |
| 131 content::BrowserContext* browser_context) const OVERRIDE; | 132 content::BrowserContext* browser_context) const OVERRIDE; |
| 132 | 133 |
| 133 // Invoked with the NavigationEntry that is going to be added to the | 134 // Invoked with the NavigationEntry that is going to be added to the |
| 134 // navigation controller. | 135 // navigation controller. |
| 135 // Gives an opportunity to sub-classes to set states on the |entry|. | 136 // Gives an opportunity to sub-classes to set states on the |entry|. |
| 136 // Note that this is only called if the InterstitialPage was constructed with | 137 // Note that this is only called if the InterstitialPage was constructed with |
| 137 // |create_navigation_entry| set to true. | 138 // |create_navigation_entry| set to true. |
| 138 virtual void UpdateEntry(NavigationEntry* entry) {} | 139 virtual void UpdateEntry(NavigationEntry* entry) {} |
| 139 | 140 |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 236 typedef std::map<TabContents*, InterstitialPage*> InterstitialPageMap; | 237 typedef std::map<TabContents*, InterstitialPage*> InterstitialPageMap; |
| 237 static InterstitialPageMap* tab_to_interstitial_page_; | 238 static InterstitialPageMap* tab_to_interstitial_page_; |
| 238 | 239 |
| 239 // Settings passed to the renderer. | 240 // Settings passed to the renderer. |
| 240 RendererPreferences renderer_preferences_; | 241 RendererPreferences renderer_preferences_; |
| 241 | 242 |
| 242 DISALLOW_COPY_AND_ASSIGN(InterstitialPage); | 243 DISALLOW_COPY_AND_ASSIGN(InterstitialPage); |
| 243 }; | 244 }; |
| 244 | 245 |
| 245 #endif // CONTENT_BROWSER_TAB_CONTENTS_INTERSTITIAL_PAGE_H_ | 246 #endif // CONTENT_BROWSER_TAB_CONTENTS_INTERSTITIAL_PAGE_H_ |
| OLD | NEW |