| 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 839 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 850 const std::string& state); | 850 const std::string& state); |
| 851 virtual void UpdateTitle(RenderViewHost* render_view_host, | 851 virtual void UpdateTitle(RenderViewHost* render_view_host, |
| 852 int32 page_id, | 852 int32 page_id, |
| 853 const std::wstring& title); | 853 const std::wstring& title); |
| 854 virtual void UpdateEncoding(RenderViewHost* render_view_host, | 854 virtual void UpdateEncoding(RenderViewHost* render_view_host, |
| 855 const std::string& encoding); | 855 const std::string& encoding); |
| 856 virtual void UpdateTargetURL(int32 page_id, const GURL& url); | 856 virtual void UpdateTargetURL(int32 page_id, const GURL& url); |
| 857 virtual void UpdateThumbnail(const GURL& url, | 857 virtual void UpdateThumbnail(const GURL& url, |
| 858 const SkBitmap& bitmap, | 858 const SkBitmap& bitmap, |
| 859 const ThumbnailScore& score); | 859 const ThumbnailScore& score); |
| 860 virtual void UpdateInspectorSettings(const std::wstring& raw_settings); | 860 virtual void UpdateInspectorSettings(const std::string& raw_settings); |
| 861 virtual void Close(RenderViewHost* render_view_host); | 861 virtual void Close(RenderViewHost* render_view_host); |
| 862 virtual void RequestMove(const gfx::Rect& new_bounds); | 862 virtual void RequestMove(const gfx::Rect& new_bounds); |
| 863 virtual void DidStartLoading(RenderViewHost* render_view_host); | 863 virtual void DidStartLoading(RenderViewHost* render_view_host); |
| 864 virtual void DidStopLoading(RenderViewHost* render_view_host); | 864 virtual void DidStopLoading(RenderViewHost* render_view_host); |
| 865 virtual void RequestOpenURL(const GURL& url, const GURL& referrer, | 865 virtual void RequestOpenURL(const GURL& url, const GURL& referrer, |
| 866 WindowOpenDisposition disposition); | 866 WindowOpenDisposition disposition); |
| 867 virtual void DomOperationResponse(const std::string& json_string, | 867 virtual void DomOperationResponse(const std::string& json_string, |
| 868 int automation_id); | 868 int automation_id); |
| 869 virtual void ProcessDOMUIMessage(const std::string& message, | 869 virtual void ProcessDOMUIMessage(const std::string& message, |
| 870 const std::string& content, | 870 const std::string& content, |
| (...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1150 // If this tab was created from a renderer using window.open, this will be | 1150 // If this tab was created from a renderer using window.open, this will be |
| 1151 // non-NULL and represent the DOMUI of the opening renderer. | 1151 // non-NULL and represent the DOMUI of the opening renderer. |
| 1152 DOMUITypeID opener_dom_ui_type_; | 1152 DOMUITypeID opener_dom_ui_type_; |
| 1153 | 1153 |
| 1154 // --------------------------------------------------------------------------- | 1154 // --------------------------------------------------------------------------- |
| 1155 | 1155 |
| 1156 DISALLOW_COPY_AND_ASSIGN(TabContents); | 1156 DISALLOW_COPY_AND_ASSIGN(TabContents); |
| 1157 }; | 1157 }; |
| 1158 | 1158 |
| 1159 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ | 1159 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ |
| OLD | NEW |