| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ | 5 #ifndef CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ |
| 6 #define CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ | 6 #define CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ |
| 7 | 7 |
| 8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| (...skipping 788 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 799 virtual RenderViewHostDelegate::RendererManagement* | 799 virtual RenderViewHostDelegate::RendererManagement* |
| 800 GetRendererManagementDelegate(); | 800 GetRendererManagementDelegate(); |
| 801 virtual RenderViewHostDelegate::BrowserIntegration* | 801 virtual RenderViewHostDelegate::BrowserIntegration* |
| 802 GetBrowserIntegrationDelegate(); | 802 GetBrowserIntegrationDelegate(); |
| 803 virtual RenderViewHostDelegate::Resource* GetResourceDelegate(); | 803 virtual RenderViewHostDelegate::Resource* GetResourceDelegate(); |
| 804 virtual RenderViewHostDelegate::Save* GetSaveDelegate(); | 804 virtual RenderViewHostDelegate::Save* GetSaveDelegate(); |
| 805 virtual RenderViewHostDelegate::Printing* GetPrintingDelegate(); | 805 virtual RenderViewHostDelegate::Printing* GetPrintingDelegate(); |
| 806 virtual RenderViewHostDelegate::FavIcon* GetFavIconDelegate(); | 806 virtual RenderViewHostDelegate::FavIcon* GetFavIconDelegate(); |
| 807 virtual RenderViewHostDelegate::Autofill* GetAutofillDelegate(); | 807 virtual RenderViewHostDelegate::Autofill* GetAutofillDelegate(); |
| 808 virtual TabContents* GetAsTabContents(); | 808 virtual TabContents* GetAsTabContents(); |
| 809 virtual ViewType::Type GetRenderViewType() const; |
| 810 virtual int GetBrowserWindowID() const; |
| 809 virtual void RenderViewCreated(RenderViewHost* render_view_host); | 811 virtual void RenderViewCreated(RenderViewHost* render_view_host); |
| 810 virtual void RenderViewReady(RenderViewHost* render_view_host); | 812 virtual void RenderViewReady(RenderViewHost* render_view_host); |
| 811 virtual void RenderViewGone(RenderViewHost* render_view_host); | 813 virtual void RenderViewGone(RenderViewHost* render_view_host); |
| 812 virtual void RenderViewDeleted(RenderViewHost* render_view_host); | 814 virtual void RenderViewDeleted(RenderViewHost* render_view_host); |
| 813 virtual void DidNavigate(RenderViewHost* render_view_host, | 815 virtual void DidNavigate(RenderViewHost* render_view_host, |
| 814 const ViewHostMsg_FrameNavigate_Params& params); | 816 const ViewHostMsg_FrameNavigate_Params& params); |
| 815 virtual void UpdateState(RenderViewHost* render_view_host, | 817 virtual void UpdateState(RenderViewHost* render_view_host, |
| 816 int32 page_id, | 818 int32 page_id, |
| 817 const std::string& state); | 819 const std::string& state); |
| 818 virtual void UpdateTitle(RenderViewHost* render_view_host, | 820 virtual void UpdateTitle(RenderViewHost* render_view_host, |
| (...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1107 | 1109 |
| 1108 // Settings that get passed to the renderer process. | 1110 // Settings that get passed to the renderer process. |
| 1109 RendererPreferences renderer_preferences_; | 1111 RendererPreferences renderer_preferences_; |
| 1110 | 1112 |
| 1111 // --------------------------------------------------------------------------- | 1113 // --------------------------------------------------------------------------- |
| 1112 | 1114 |
| 1113 DISALLOW_COPY_AND_ASSIGN(TabContents); | 1115 DISALLOW_COPY_AND_ASSIGN(TabContents); |
| 1114 }; | 1116 }; |
| 1115 | 1117 |
| 1116 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ | 1118 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ |
| OLD | NEW |