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 922 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
933 const std::wstring& default_prompt, | 933 const std::wstring& default_prompt, |
934 const GURL& frame_url, | 934 const GURL& frame_url, |
935 const int flags, | 935 const int flags, |
936 IPC::Message* reply_msg, | 936 IPC::Message* reply_msg, |
937 bool* did_suppress_message); | 937 bool* did_suppress_message); |
938 virtual void RunBeforeUnloadConfirm(const std::wstring& message, | 938 virtual void RunBeforeUnloadConfirm(const std::wstring& message, |
939 IPC::Message* reply_msg); | 939 IPC::Message* reply_msg); |
940 virtual void ShowModalHTMLDialog(const GURL& url, int width, int height, | 940 virtual void ShowModalHTMLDialog(const GURL& url, int width, int height, |
941 const std::string& json_arguments, | 941 const std::string& json_arguments, |
942 IPC::Message* reply_msg); | 942 IPC::Message* reply_msg); |
943 virtual void PasswordFormsSeen( | 943 virtual void PasswordFormsFound( |
944 const std::vector<webkit_glue::PasswordForm>& forms); | 944 const std::vector<webkit_glue::PasswordForm>& forms); |
| 945 virtual void PasswordFormsVisible( |
| 946 const std::vector<webkit_glue::PasswordForm>& visible_forms); |
945 virtual void PageHasOSDD(RenderViewHost* render_view_host, | 947 virtual void PageHasOSDD(RenderViewHost* render_view_host, |
946 int32 page_id, const GURL& url, bool autodetected); | 948 int32 page_id, const GURL& url, bool autodetected); |
947 virtual GURL GetAlternateErrorPageURL() const; | 949 virtual GURL GetAlternateErrorPageURL() const; |
948 virtual RendererPreferences GetRendererPrefs(Profile* profile) const; | 950 virtual RendererPreferences GetRendererPrefs(Profile* profile) const; |
949 virtual WebPreferences GetWebkitPrefs(); | 951 virtual WebPreferences GetWebkitPrefs(); |
950 virtual void OnIgnoredUIEvent(); | 952 virtual void OnIgnoredUIEvent(); |
951 virtual void OnJSOutOfMemory(); | 953 virtual void OnJSOutOfMemory(); |
952 virtual void OnCrossSiteResponse(int new_render_process_host_id, | 954 virtual void OnCrossSiteResponse(int new_render_process_host_id, |
953 int new_request_id); | 955 int new_request_id); |
954 virtual bool CanBlur() const; | 956 virtual bool CanBlur() const; |
(...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1262 | 1264 |
1263 // Maps each frame on this page to its geolocation content settings. | 1265 // Maps each frame on this page to its geolocation content settings. |
1264 GeolocationContentSettings geolocation_content_settings_; | 1266 GeolocationContentSettings geolocation_content_settings_; |
1265 | 1267 |
1266 // --------------------------------------------------------------------------- | 1268 // --------------------------------------------------------------------------- |
1267 | 1269 |
1268 DISALLOW_COPY_AND_ASSIGN(TabContents); | 1270 DISALLOW_COPY_AND_ASSIGN(TabContents); |
1269 }; | 1271 }; |
1270 | 1272 |
1271 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ | 1273 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ |
OLD | NEW |