| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 <deque> | 10 #include <deque> |
| (...skipping 778 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 789 // RenderViewHostDelegate ---------------------------------------------------- | 789 // RenderViewHostDelegate ---------------------------------------------------- |
| 790 | 790 |
| 791 // RenderViewHostDelegate::BrowserIntegration implementation. | 791 // RenderViewHostDelegate::BrowserIntegration implementation. |
| 792 virtual void OnUserGesture(); | 792 virtual void OnUserGesture(); |
| 793 virtual void OnFindReply(int request_id, | 793 virtual void OnFindReply(int request_id, |
| 794 int number_of_matches, | 794 int number_of_matches, |
| 795 const gfx::Rect& selection_rect, | 795 const gfx::Rect& selection_rect, |
| 796 int active_match_ordinal, | 796 int active_match_ordinal, |
| 797 bool final_update); | 797 bool final_update); |
| 798 virtual void GoToEntryAtOffset(int offset); | 798 virtual void GoToEntryAtOffset(int offset); |
| 799 virtual void GetHistoryListCount(int* back_list_count, | |
| 800 int* forward_list_count); | |
| 801 virtual void OnMissingPluginStatus(int status); | 799 virtual void OnMissingPluginStatus(int status); |
| 802 virtual void OnCrashedPlugin(const FilePath& plugin_path); | 800 virtual void OnCrashedPlugin(const FilePath& plugin_path); |
| 803 virtual void OnCrashedWorker(); | 801 virtual void OnCrashedWorker(); |
| 804 virtual void OnDidGetApplicationInfo( | 802 virtual void OnDidGetApplicationInfo( |
| 805 int32 page_id, | 803 int32 page_id, |
| 806 const webkit_glue::WebApplicationInfo& info); | 804 const webkit_glue::WebApplicationInfo& info); |
| 807 virtual void OnPageContents(const GURL& url, | 805 virtual void OnPageContents(const GURL& url, |
| 808 int renderer_process_id, | 806 int renderer_process_id, |
| 809 int32 page_id, | 807 int32 page_id, |
| 810 const std::wstring& contents, | 808 const std::wstring& contents, |
| (...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1197 | 1195 |
| 1198 // Information about the language the page is in and has been translated to. | 1196 // Information about the language the page is in and has been translated to. |
| 1199 LanguageState language_state_; | 1197 LanguageState language_state_; |
| 1200 | 1198 |
| 1201 // --------------------------------------------------------------------------- | 1199 // --------------------------------------------------------------------------- |
| 1202 | 1200 |
| 1203 DISALLOW_COPY_AND_ASSIGN(TabContents); | 1201 DISALLOW_COPY_AND_ASSIGN(TabContents); |
| 1204 }; | 1202 }; |
| 1205 | 1203 |
| 1206 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ | 1204 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ |
| OLD | NEW |