| 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 832 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 843 const std::string& json_arguments, | 843 const std::string& json_arguments, |
| 844 IPC::Message* reply_msg); | 844 IPC::Message* reply_msg); |
| 845 virtual void PasswordFormsSeen( | 845 virtual void PasswordFormsSeen( |
| 846 const std::vector<webkit_glue::PasswordForm>& forms); | 846 const std::vector<webkit_glue::PasswordForm>& forms); |
| 847 virtual void PageHasOSDD(RenderViewHost* render_view_host, | 847 virtual void PageHasOSDD(RenderViewHost* render_view_host, |
| 848 int32 page_id, const GURL& url, bool autodetected); | 848 int32 page_id, const GURL& url, bool autodetected); |
| 849 virtual GURL GetAlternateErrorPageURL() const; | 849 virtual GURL GetAlternateErrorPageURL() const; |
| 850 virtual RendererPreferences GetRendererPrefs() const; | 850 virtual RendererPreferences GetRendererPrefs() const; |
| 851 virtual WebPreferences GetWebkitPrefs(); | 851 virtual WebPreferences GetWebkitPrefs(); |
| 852 virtual void OnJSOutOfMemory(); | 852 virtual void OnJSOutOfMemory(); |
| 853 virtual void ShouldClosePage(bool proceed); | |
| 854 virtual void OnCrossSiteResponse(int new_render_process_host_id, | 853 virtual void OnCrossSiteResponse(int new_render_process_host_id, |
| 855 int new_request_id); | 854 int new_request_id); |
| 856 virtual bool CanBlur() const; | 855 virtual bool CanBlur() const; |
| 857 virtual gfx::Rect GetRootWindowResizerRect() const; | 856 virtual gfx::Rect GetRootWindowResizerRect() const; |
| 858 virtual void RendererUnresponsive(RenderViewHost* render_view_host, | 857 virtual void RendererUnresponsive(RenderViewHost* render_view_host, |
| 859 bool is_during_unload); | 858 bool is_during_unload); |
| 860 virtual void RendererResponsive(RenderViewHost* render_view_host); | 859 virtual void RendererResponsive(RenderViewHost* render_view_host); |
| 861 virtual void LoadStateChanged(const GURL& url, net::LoadState load_state); | 860 virtual void LoadStateChanged(const GURL& url, net::LoadState load_state); |
| 862 virtual bool IsExternalTabContainer() const; | 861 virtual bool IsExternalTabContainer() const; |
| 863 virtual void DidInsertCSS(); | 862 virtual void DidInsertCSS(); |
| (...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1096 | 1095 |
| 1097 // Settings that get passed to the renderer process. | 1096 // Settings that get passed to the renderer process. |
| 1098 RendererPreferences renderer_preferences_; | 1097 RendererPreferences renderer_preferences_; |
| 1099 | 1098 |
| 1100 // --------------------------------------------------------------------------- | 1099 // --------------------------------------------------------------------------- |
| 1101 | 1100 |
| 1102 DISALLOW_COPY_AND_ASSIGN(TabContents); | 1101 DISALLOW_COPY_AND_ASSIGN(TabContents); |
| 1103 }; | 1102 }; |
| 1104 | 1103 |
| 1105 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ | 1104 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ |
| OLD | NEW |