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 875 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
886 virtual void OnCrossSiteResponse(int new_render_process_host_id, | 886 virtual void OnCrossSiteResponse(int new_render_process_host_id, |
887 int new_request_id); | 887 int new_request_id); |
888 virtual bool CanBlur() const; | 888 virtual bool CanBlur() const; |
889 virtual gfx::Rect GetRootWindowResizerRect() const; | 889 virtual gfx::Rect GetRootWindowResizerRect() const; |
890 virtual void RendererUnresponsive(RenderViewHost* render_view_host, | 890 virtual void RendererUnresponsive(RenderViewHost* render_view_host, |
891 bool is_during_unload); | 891 bool is_during_unload); |
892 virtual void RendererResponsive(RenderViewHost* render_view_host); | 892 virtual void RendererResponsive(RenderViewHost* render_view_host); |
893 virtual void LoadStateChanged(const GURL& url, net::LoadState load_state); | 893 virtual void LoadStateChanged(const GURL& url, net::LoadState load_state); |
894 virtual bool IsExternalTabContainer() const; | 894 virtual bool IsExternalTabContainer() const; |
895 virtual void DidInsertCSS(); | 895 virtual void DidInsertCSS(); |
| 896 virtual void FocusedNodeChanged(); |
896 | 897 |
897 // SelectFileDialog::Listener ------------------------------------------------ | 898 // SelectFileDialog::Listener ------------------------------------------------ |
898 | 899 |
899 virtual void FileSelected(const FilePath& path, int index, void* params); | 900 virtual void FileSelected(const FilePath& path, int index, void* params); |
900 virtual void MultiFilesSelected(const std::vector<FilePath>& files, | 901 virtual void MultiFilesSelected(const std::vector<FilePath>& files, |
901 void* params); | 902 void* params); |
902 virtual void FileSelectionCanceled(void* params); | 903 virtual void FileSelectionCanceled(void* params); |
903 | 904 |
904 // RenderViewHostManager::Delegate ------------------------------------------- | 905 // RenderViewHostManager::Delegate ------------------------------------------- |
905 | 906 |
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1132 // If this tab was created from a renderer using window.open, this will be | 1133 // If this tab was created from a renderer using window.open, this will be |
1133 // non-NULL and represent the DOMUI of the opening renderer. | 1134 // non-NULL and represent the DOMUI of the opening renderer. |
1134 DOMUITypeID opener_dom_ui_type_; | 1135 DOMUITypeID opener_dom_ui_type_; |
1135 | 1136 |
1136 // --------------------------------------------------------------------------- | 1137 // --------------------------------------------------------------------------- |
1137 | 1138 |
1138 DISALLOW_COPY_AND_ASSIGN(TabContents); | 1139 DISALLOW_COPY_AND_ASSIGN(TabContents); |
1139 }; | 1140 }; |
1140 | 1141 |
1141 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ | 1142 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ |
OLD | NEW |