| 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 724 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 735 bool unload_ack_is_for_cross_site_transition_; | 735 bool unload_ack_is_for_cross_site_transition_; |
| 736 | 736 |
| 737 bool are_javascript_messages_suppressed_; | 737 bool are_javascript_messages_suppressed_; |
| 738 | 738 |
| 739 // True if the render view can be shut down suddenly. | 739 // True if the render view can be shut down suddenly. |
| 740 bool sudden_termination_allowed_; | 740 bool sudden_termination_allowed_; |
| 741 | 741 |
| 742 // The session storage namespace id to be used by the associated render view. | 742 // The session storage namespace id to be used by the associated render view. |
| 743 int64 session_storage_namespace_id_; | 743 int64 session_storage_namespace_id_; |
| 744 | 744 |
| 745 // Whether this render view will be used for extensions. This controls | 745 // Whether this render view will get extension api bindings. This controls |
| 746 // what process type we use. | 746 // what process type we use. |
| 747 bool is_extension_process_; | 747 bool is_extension_process_; |
| 748 | 748 |
| 749 // AutoFill and Autocomplete suggestions. We accumulate these separately and | 749 // AutoFill and Autocomplete suggestions. We accumulate these separately and |
| 750 // send them back to the renderer together. | 750 // send them back to the renderer together. |
| 751 int autofill_query_id_; | 751 int autofill_query_id_; |
| 752 std::vector<string16> autofill_values_; | 752 std::vector<string16> autofill_values_; |
| 753 std::vector<string16> autofill_labels_; | 753 std::vector<string16> autofill_labels_; |
| 754 std::vector<string16> autofill_icons_; | 754 std::vector<string16> autofill_icons_; |
| 755 std::vector<int> autofill_unique_ids_; | 755 std::vector<int> autofill_unique_ids_; |
| 756 | 756 |
| 757 // Whether the accessibility tree should be saved, for unit testing. | 757 // Whether the accessibility tree should be saved, for unit testing. |
| 758 bool save_accessibility_tree_for_testing_; | 758 bool save_accessibility_tree_for_testing_; |
| 759 | 759 |
| 760 // The most recently received accessibility tree - for unit testing only. | 760 // The most recently received accessibility tree - for unit testing only. |
| 761 webkit_glue::WebAccessibility accessibility_tree_; | 761 webkit_glue::WebAccessibility accessibility_tree_; |
| 762 | 762 |
| 763 DISALLOW_COPY_AND_ASSIGN(RenderViewHost); | 763 DISALLOW_COPY_AND_ASSIGN(RenderViewHost); |
| 764 }; | 764 }; |
| 765 | 765 |
| 766 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ | 766 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ |
| OLD | NEW |