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 931 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
942 IPC::Message* reply_msg); | 942 IPC::Message* reply_msg); |
943 virtual void ShowModalHTMLDialog(const GURL& url, int width, int height, | 943 virtual void ShowModalHTMLDialog(const GURL& url, int width, int height, |
944 const std::string& json_arguments, | 944 const std::string& json_arguments, |
945 IPC::Message* reply_msg); | 945 IPC::Message* reply_msg); |
946 virtual void PasswordFormsFound( | 946 virtual void PasswordFormsFound( |
947 const std::vector<webkit_glue::PasswordForm>& forms); | 947 const std::vector<webkit_glue::PasswordForm>& forms); |
948 virtual void PasswordFormsVisible( | 948 virtual void PasswordFormsVisible( |
949 const std::vector<webkit_glue::PasswordForm>& visible_forms); | 949 const std::vector<webkit_glue::PasswordForm>& visible_forms); |
950 virtual void PageHasOSDD(RenderViewHost* render_view_host, | 950 virtual void PageHasOSDD(RenderViewHost* render_view_host, |
951 int32 page_id, const GURL& url, bool autodetected); | 951 int32 page_id, const GURL& url, bool autodetected); |
| 952 virtual ViewHostMsg_GetSearchProviderInstallState_Params |
| 953 GetSearchProviderInstallState(const GURL& url); |
952 virtual GURL GetAlternateErrorPageURL() const; | 954 virtual GURL GetAlternateErrorPageURL() const; |
953 virtual RendererPreferences GetRendererPrefs(Profile* profile) const; | 955 virtual RendererPreferences GetRendererPrefs(Profile* profile) const; |
954 virtual WebPreferences GetWebkitPrefs(); | 956 virtual WebPreferences GetWebkitPrefs(); |
955 virtual void OnIgnoredUIEvent(); | 957 virtual void OnIgnoredUIEvent(); |
956 virtual void OnJSOutOfMemory(); | 958 virtual void OnJSOutOfMemory(); |
957 virtual void OnCrossSiteResponse(int new_render_process_host_id, | 959 virtual void OnCrossSiteResponse(int new_render_process_host_id, |
958 int new_request_id); | 960 int new_request_id); |
959 virtual bool CanBlur() const; | 961 virtual bool CanBlur() const; |
960 virtual gfx::Rect GetRootWindowResizerRect() const; | 962 virtual gfx::Rect GetRootWindowResizerRect() const; |
961 virtual void RendererUnresponsive(RenderViewHost* render_view_host, | 963 virtual void RendererUnresponsive(RenderViewHost* render_view_host, |
(...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1263 | 1265 |
1264 // See description above setter. | 1266 // See description above setter. |
1265 bool closed_by_user_gesture_; | 1267 bool closed_by_user_gesture_; |
1266 | 1268 |
1267 // --------------------------------------------------------------------------- | 1269 // --------------------------------------------------------------------------- |
1268 | 1270 |
1269 DISALLOW_COPY_AND_ASSIGN(TabContents); | 1271 DISALLOW_COPY_AND_ASSIGN(TabContents); |
1270 }; | 1272 }; |
1271 | 1273 |
1272 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ | 1274 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ |
OLD | NEW |