| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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_WEB_CONTENTS_H_ | 5 #ifndef CHROME_BROWSER_TAB_CONTENTS_WEB_CONTENTS_H_ |
| 6 #define CHROME_BROWSER_TAB_CONTENTS_WEB_CONTENTS_H_ | 6 #define CHROME_BROWSER_TAB_CONTENTS_WEB_CONTENTS_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 357 virtual void RunBeforeUnloadConfirm(const GURL& frame_url, | 357 virtual void RunBeforeUnloadConfirm(const GURL& frame_url, |
| 358 const std::wstring& message, | 358 const std::wstring& message, |
| 359 IPC::Message* reply_msg); | 359 IPC::Message* reply_msg); |
| 360 virtual void ShowModalHTMLDialog(const GURL& url, int width, int height, | 360 virtual void ShowModalHTMLDialog(const GURL& url, int width, int height, |
| 361 const std::string& json_arguments, | 361 const std::string& json_arguments, |
| 362 IPC::Message* reply_msg); | 362 IPC::Message* reply_msg); |
| 363 virtual void PasswordFormsSeen(const std::vector<PasswordForm>& forms); | 363 virtual void PasswordFormsSeen(const std::vector<PasswordForm>& forms); |
| 364 virtual void AutofillFormSubmitted(const AutofillForm& form); | 364 virtual void AutofillFormSubmitted(const AutofillForm& form); |
| 365 virtual void GetAutofillSuggestions(const std::wstring& field_name, | 365 virtual void GetAutofillSuggestions(const std::wstring& field_name, |
| 366 const std::wstring& user_text, int64 node_id, int request_id); | 366 const std::wstring& user_text, int64 node_id, int request_id); |
| 367 virtual void RemoveAutofillEntry(const std::wstring& field_name, |
| 368 const std::wstring& value); |
| 367 virtual void PageHasOSDD(RenderViewHost* render_view_host, | 369 virtual void PageHasOSDD(RenderViewHost* render_view_host, |
| 368 int32 page_id, const GURL& url, bool autodetected); | 370 int32 page_id, const GURL& url, bool autodetected); |
| 369 virtual void InspectElementReply(int num_resources); | 371 virtual void InspectElementReply(int num_resources); |
| 370 virtual void DidGetPrintedPagesCount(int cookie, int number_pages); | 372 virtual void DidGetPrintedPagesCount(int cookie, int number_pages); |
| 371 virtual void DidPrintPage(const ViewHostMsg_DidPrintPage_Params& params); | 373 virtual void DidPrintPage(const ViewHostMsg_DidPrintPage_Params& params); |
| 372 virtual GURL GetAlternateErrorPageURL() const; | 374 virtual GURL GetAlternateErrorPageURL() const; |
| 373 virtual WebPreferences GetWebkitPrefs(); | 375 virtual WebPreferences GetWebkitPrefs(); |
| 374 virtual void OnMissingPluginStatus(int status); | 376 virtual void OnMissingPluginStatus(int status); |
| 375 virtual void OnCrashedPlugin(const FilePath& plugin_path); | 377 virtual void OnCrashedPlugin(const FilePath& plugin_path); |
| 376 virtual void OnJSOutOfMemory(); | 378 virtual void OnJSOutOfMemory(); |
| (...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 668 | 670 |
| 669 // The last find result. This object contains details about the number of | 671 // The last find result. This object contains details about the number of |
| 670 // matches, the find selection rectangle, etc. The UI can access this | 672 // matches, the find selection rectangle, etc. The UI can access this |
| 671 // information to build its presentation. | 673 // information to build its presentation. |
| 672 FindNotificationDetails find_result_; | 674 FindNotificationDetails find_result_; |
| 673 | 675 |
| 674 DISALLOW_COPY_AND_ASSIGN(WebContents); | 676 DISALLOW_COPY_AND_ASSIGN(WebContents); |
| 675 }; | 677 }; |
| 676 | 678 |
| 677 #endif // CHROME_BROWSER_TAB_CONTENTS_WEB_CONTENTS_H_ | 679 #endif // CHROME_BROWSER_TAB_CONTENTS_WEB_CONTENTS_H_ |
| OLD | NEW |