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 776 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
787 bool showing_repost_interstitial); | 787 bool showing_repost_interstitial); |
788 virtual void UpdateFavIconURL(RenderViewHost* render_view_host, | 788 virtual void UpdateFavIconURL(RenderViewHost* render_view_host, |
789 int32 page_id, const GURL& icon_url); | 789 int32 page_id, const GURL& icon_url); |
790 virtual void DidDownloadImage(RenderViewHost* render_view_host, | 790 virtual void DidDownloadImage(RenderViewHost* render_view_host, |
791 int id, | 791 int id, |
792 const GURL& image_url, | 792 const GURL& image_url, |
793 bool errored, | 793 bool errored, |
794 const SkBitmap& image); | 794 const SkBitmap& image); |
795 virtual void RequestOpenURL(const GURL& url, const GURL& referrer, | 795 virtual void RequestOpenURL(const GURL& url, const GURL& referrer, |
796 WindowOpenDisposition disposition); | 796 WindowOpenDisposition disposition); |
797 virtual void DomOperationResponse(const std::string& json_string, | |
798 int automation_id); | |
799 virtual void ProcessDOMUIMessage(const std::string& message, | 797 virtual void ProcessDOMUIMessage(const std::string& message, |
800 const std::string& content, | 798 const std::string& content, |
801 int request_id, | 799 int request_id, |
802 bool has_callback); | 800 bool has_callback); |
803 virtual void DocumentLoadedInFrame(); | 801 virtual void DocumentLoadedInFrame(); |
804 virtual void ProcessExternalHostMessage(const std::string& message, | 802 virtual void ProcessExternalHostMessage(const std::string& message, |
805 const std::string& origin, | 803 const std::string& origin, |
806 const std::string& target); | 804 const std::string& target); |
807 virtual void GoToEntryAtOffset(int offset); | 805 virtual void GoToEntryAtOffset(int offset); |
808 virtual void GetHistoryListCount(int* back_list_count, | 806 virtual void GetHistoryListCount(int* back_list_count, |
(...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1085 // True if the user has decided to block future javascript messages. This is | 1083 // True if the user has decided to block future javascript messages. This is |
1086 // reset on navigations to false on navigations. | 1084 // reset on navigations to false on navigations. |
1087 bool suppress_javascript_messages_; | 1085 bool suppress_javascript_messages_; |
1088 | 1086 |
1089 // --------------------------------------------------------------------------- | 1087 // --------------------------------------------------------------------------- |
1090 | 1088 |
1091 DISALLOW_COPY_AND_ASSIGN(TabContents); | 1089 DISALLOW_COPY_AND_ASSIGN(TabContents); |
1092 }; | 1090 }; |
1093 | 1091 |
1094 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ | 1092 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ |
OLD | NEW |