| 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 823 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 834 int new_request_id); | 834 int new_request_id); |
| 835 virtual bool CanBlur() const; | 835 virtual bool CanBlur() const; |
| 836 virtual gfx::Rect GetRootWindowResizerRect() const; | 836 virtual gfx::Rect GetRootWindowResizerRect() const; |
| 837 virtual void RendererUnresponsive(RenderViewHost* render_view_host, | 837 virtual void RendererUnresponsive(RenderViewHost* render_view_host, |
| 838 bool is_during_unload); | 838 bool is_during_unload); |
| 839 virtual void RendererResponsive(RenderViewHost* render_view_host); | 839 virtual void RendererResponsive(RenderViewHost* render_view_host); |
| 840 virtual void LoadStateChanged(const GURL& url, net::LoadState load_state); | 840 virtual void LoadStateChanged(const GURL& url, net::LoadState load_state); |
| 841 virtual void OnDidGetApplicationInfo( | 841 virtual void OnDidGetApplicationInfo( |
| 842 int32 page_id, | 842 int32 page_id, |
| 843 const webkit_glue::WebApplicationInfo& info); | 843 const webkit_glue::WebApplicationInfo& info); |
| 844 virtual void OnEnterOrSpace(); | 844 virtual void OnUserGesture(); |
| 845 virtual void OnFindReply(int request_id, | 845 virtual void OnFindReply(int request_id, |
| 846 int number_of_matches, | 846 int number_of_matches, |
| 847 const gfx::Rect& selection_rect, | 847 const gfx::Rect& selection_rect, |
| 848 int active_match_ordinal, | 848 int active_match_ordinal, |
| 849 bool final_update); | 849 bool final_update); |
| 850 virtual bool IsExternalTabContainer() const; | 850 virtual bool IsExternalTabContainer() const; |
| 851 | 851 |
| 852 // SelectFileDialog::Listener ------------------------------------------------ | 852 // SelectFileDialog::Listener ------------------------------------------------ |
| 853 | 853 |
| 854 virtual void FileSelected(const FilePath& path, int index, void* params); | 854 virtual void FileSelected(const FilePath& path, int index, void* params); |
| (...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1084 // True if the user has decided to block future javascript messages. This is | 1084 // True if the user has decided to block future javascript messages. This is |
| 1085 // reset on navigations to false on navigations. | 1085 // reset on navigations to false on navigations. |
| 1086 bool suppress_javascript_messages_; | 1086 bool suppress_javascript_messages_; |
| 1087 | 1087 |
| 1088 // --------------------------------------------------------------------------- | 1088 // --------------------------------------------------------------------------- |
| 1089 | 1089 |
| 1090 DISALLOW_COPY_AND_ASSIGN(TabContents); | 1090 DISALLOW_COPY_AND_ASSIGN(TabContents); |
| 1091 }; | 1091 }; |
| 1092 | 1092 |
| 1093 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ | 1093 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ |
| OLD | NEW |