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 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "build/build_config.h" | 9 #include "build/build_config.h" |
10 | 10 |
(...skipping 925 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
936 IPC::Message* reply_msg); | 936 IPC::Message* reply_msg); |
937 virtual void ShowModalHTMLDialog(const GURL& url, int width, int height, | 937 virtual void ShowModalHTMLDialog(const GURL& url, int width, int height, |
938 const std::string& json_arguments, | 938 const std::string& json_arguments, |
939 IPC::Message* reply_msg); | 939 IPC::Message* reply_msg); |
940 virtual void PasswordFormsFound( | 940 virtual void PasswordFormsFound( |
941 const std::vector<webkit_glue::PasswordForm>& forms); | 941 const std::vector<webkit_glue::PasswordForm>& forms); |
942 virtual void PasswordFormsVisible( | 942 virtual void PasswordFormsVisible( |
943 const std::vector<webkit_glue::PasswordForm>& visible_forms); | 943 const std::vector<webkit_glue::PasswordForm>& visible_forms); |
944 virtual void PageHasOSDD(RenderViewHost* render_view_host, | 944 virtual void PageHasOSDD(RenderViewHost* render_view_host, |
945 int32 page_id, const GURL& url, bool autodetected); | 945 int32 page_id, const GURL& url, bool autodetected); |
946 virtual ViewHostMsg_GetSearchProviderInstallState_Params | |
947 GetSearchProviderInstallState(const GURL& url); | |
948 virtual GURL GetAlternateErrorPageURL() const; | 946 virtual GURL GetAlternateErrorPageURL() const; |
949 virtual RendererPreferences GetRendererPrefs(Profile* profile) const; | 947 virtual RendererPreferences GetRendererPrefs(Profile* profile) const; |
950 virtual WebPreferences GetWebkitPrefs(); | 948 virtual WebPreferences GetWebkitPrefs(); |
951 virtual void OnIgnoredUIEvent(); | 949 virtual void OnIgnoredUIEvent(); |
952 virtual void OnJSOutOfMemory(); | 950 virtual void OnJSOutOfMemory(); |
953 virtual void OnCrossSiteResponse(int new_render_process_host_id, | 951 virtual void OnCrossSiteResponse(int new_render_process_host_id, |
954 int new_request_id); | 952 int new_request_id); |
955 virtual gfx::Rect GetRootWindowResizerRect() const; | 953 virtual gfx::Rect GetRootWindowResizerRect() const; |
956 virtual void RendererUnresponsive(RenderViewHost* render_view_host, | 954 virtual void RendererUnresponsive(RenderViewHost* render_view_host, |
957 bool is_during_unload); | 955 bool is_during_unload); |
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1257 bool displaying_pdf_content_; | 1255 bool displaying_pdf_content_; |
1258 | 1256 |
1259 scoped_ptr<MatchPreview> match_preview_; | 1257 scoped_ptr<MatchPreview> match_preview_; |
1260 | 1258 |
1261 // --------------------------------------------------------------------------- | 1259 // --------------------------------------------------------------------------- |
1262 | 1260 |
1263 DISALLOW_COPY_AND_ASSIGN(TabContents); | 1261 DISALLOW_COPY_AND_ASSIGN(TabContents); |
1264 }; | 1262 }; |
1265 | 1263 |
1266 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ | 1264 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ |
OLD | NEW |