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_RENDERER_HOST_RENDER_VIEW_HOST_H_ | 5 #ifndef CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ |
6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ | 6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
(...skipping 393 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
404 const std::string& target); | 404 const std::string& target); |
405 | 405 |
406 // Message the renderer that we should be counted as a new document and not | 406 // Message the renderer that we should be counted as a new document and not |
407 // as a popup. | 407 // as a popup. |
408 void DisassociateFromPopupCount(); | 408 void DisassociateFromPopupCount(); |
409 | 409 |
410 // Tells the renderer whether it should allow window.close. This is initially | 410 // Tells the renderer whether it should allow window.close. This is initially |
411 // set to false when creating a renderer-initiated window via window.open. | 411 // set to false when creating a renderer-initiated window via window.open. |
412 void AllowScriptToClose(bool visible); | 412 void AllowScriptToClose(bool visible); |
413 | 413 |
| 414 // Resets the stored AutoFill state. |
| 415 void ResetAutoFillState(int query_id, bool autofill_disabled); |
| 416 |
414 // Called by the AutoFillManager when the list of suggestions is ready. | 417 // Called by the AutoFillManager when the list of suggestions is ready. |
415 void AutoFillSuggestionsReturned( | 418 void AutoFillSuggestionsReturned(const std::vector<string16>& values, |
416 int query_id, | 419 const std::vector<string16>& labels, |
417 const std::vector<string16>& values, | 420 const std::vector<string16>& icons, |
418 const std::vector<string16>& labels, | 421 const std::vector<int>& unique_ids); |
419 const std::vector<string16>& icons, | |
420 const std::vector<int>& unique_ids); | |
421 | 422 |
422 // Called by the AutocompleteHistoryManager when the list of suggestions is | 423 // Called by the AutocompleteHistoryManager when the list of suggestions is |
423 // ready. | 424 // ready. |
424 void AutocompleteSuggestionsReturned( | 425 void AutocompleteSuggestionsReturned( |
425 int query_id, | |
426 const std::vector<string16>& suggestions); | 426 const std::vector<string16>& suggestions); |
427 | 427 |
428 // Called by the AutoFillManager when the FormData has been filled out. | 428 // Called by the AutoFillManager when the FormData has been filled out. |
429 void AutoFillFormDataFilled(int query_id, const webkit_glue::FormData& form); | 429 void AutoFillFormDataFilled(int query_id, const webkit_glue::FormData& form); |
430 | 430 |
431 // Notifies the Renderer that a move or resize of its containing window has | 431 // Notifies the Renderer that a move or resize of its containing window has |
432 // started (this is used to hide the autocomplete popups if any). | 432 // started (this is used to hide the autocomplete popups if any). |
433 void WindowMoveOrResizeStarted(); | 433 void WindowMoveOrResizeStarted(); |
434 | 434 |
435 // RenderWidgetHost public overrides. | 435 // RenderWidgetHost public overrides. |
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
669 | 669 |
670 void OnReceivedSerializedHtmlData(const GURL& frame_url, | 670 void OnReceivedSerializedHtmlData(const GURL& frame_url, |
671 const std::string& data, | 671 const std::string& data, |
672 int32 status); | 672 int32 status); |
673 | 673 |
674 void OnDidGetApplicationInfo(int32 page_id, | 674 void OnDidGetApplicationInfo(int32 page_id, |
675 const webkit_glue::WebApplicationInfo& info); | 675 const webkit_glue::WebApplicationInfo& info); |
676 void OnMsgShouldCloseACK(bool proceed); | 676 void OnMsgShouldCloseACK(bool proceed); |
677 void OnQueryFormFieldAutoFill(int request_id, | 677 void OnQueryFormFieldAutoFill(int request_id, |
678 bool form_autofilled, | 678 bool form_autofilled, |
679 const webkit_glue::FormField& field); | 679 const webkit_glue::FormField& field, |
| 680 bool autofill_disabled); |
680 void OnDidShowAutoFillSuggestions(); | 681 void OnDidShowAutoFillSuggestions(); |
681 void OnRemoveAutocompleteEntry(const string16& field_name, | 682 void OnRemoveAutocompleteEntry(const string16& field_name, |
682 const string16& value); | 683 const string16& value); |
683 void OnShowAutoFillDialog(); | 684 void OnShowAutoFillDialog(); |
684 void OnFillAutoFillFormData(int query_id, | 685 void OnFillAutoFillFormData(int query_id, |
685 const webkit_glue::FormData& form, | 686 const webkit_glue::FormData& form, |
686 int unique_id); | 687 int unique_id); |
687 void OnDidFillAutoFillFormData(); | 688 void OnDidFillAutoFillFormData(); |
688 | 689 |
689 void OnShowDesktopNotification( | 690 void OnShowDesktopNotification( |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
798 // True if the render view can be shut down suddenly. | 799 // True if the render view can be shut down suddenly. |
799 bool sudden_termination_allowed_; | 800 bool sudden_termination_allowed_; |
800 | 801 |
801 // The session storage namespace to be used by the associated render view. | 802 // The session storage namespace to be used by the associated render view. |
802 scoped_refptr<SessionStorageNamespace> session_storage_namespace_; | 803 scoped_refptr<SessionStorageNamespace> session_storage_namespace_; |
803 | 804 |
804 // Whether this render view will get extension api bindings. This controls | 805 // Whether this render view will get extension api bindings. This controls |
805 // what process type we use. | 806 // what process type we use. |
806 bool is_extension_process_; | 807 bool is_extension_process_; |
807 | 808 |
| 809 // TODO(isherman): Consider splitting these off into a helper class. |
808 // AutoFill and Autocomplete suggestions. We accumulate these separately and | 810 // AutoFill and Autocomplete suggestions. We accumulate these separately and |
809 // send them back to the renderer together. | 811 // send them back to the renderer together. |
810 std::vector<string16> autofill_values_; | 812 std::vector<string16> autofill_values_; |
811 std::vector<string16> autofill_labels_; | 813 std::vector<string16> autofill_labels_; |
812 std::vector<string16> autofill_icons_; | 814 std::vector<string16> autofill_icons_; |
813 std::vector<int> autofill_unique_ids_; | 815 std::vector<int> autofill_unique_ids_; |
| 816 bool autofill_disabled_; |
| 817 int autofill_query_id_; |
814 | 818 |
815 // Whether the accessibility tree should be saved, for unit testing. | 819 // Whether the accessibility tree should be saved, for unit testing. |
816 bool save_accessibility_tree_for_testing_; | 820 bool save_accessibility_tree_for_testing_; |
817 | 821 |
818 // The most recently received accessibility tree - for unit testing only. | 822 // The most recently received accessibility tree - for unit testing only. |
819 webkit_glue::WebAccessibility accessibility_tree_; | 823 webkit_glue::WebAccessibility accessibility_tree_; |
820 | 824 |
821 DISALLOW_COPY_AND_ASSIGN(RenderViewHost); | 825 DISALLOW_COPY_AND_ASSIGN(RenderViewHost); |
822 }; | 826 }; |
823 | 827 |
824 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ | 828 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ |
OLD | NEW |