| 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 714 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 725 bool unload_ack_is_for_cross_site_transition_; | 725 bool unload_ack_is_for_cross_site_transition_; |
| 726 | 726 |
| 727 bool are_javascript_messages_suppressed_; | 727 bool are_javascript_messages_suppressed_; |
| 728 | 728 |
| 729 // True if the render view can be shut down suddenly. | 729 // True if the render view can be shut down suddenly. |
| 730 bool sudden_termination_allowed_; | 730 bool sudden_termination_allowed_; |
| 731 | 731 |
| 732 // The session storage namespace id to be used by the associated render view. | 732 // The session storage namespace id to be used by the associated render view. |
| 733 int64 session_storage_namespace_id_; | 733 int64 session_storage_namespace_id_; |
| 734 | 734 |
| 735 // Whether this render view will be used for extensions. This controls | 735 // Whether this render view will get extension api bindings. This controls |
| 736 // what process type we use. | 736 // what process type we use. |
| 737 bool is_extension_process_; | 737 bool is_extension_process_; |
| 738 | 738 |
| 739 // AutoFill and Autocomplete suggestions. We accumulate these separately and | 739 // AutoFill and Autocomplete suggestions. We accumulate these separately and |
| 740 // send them back to the renderer together. | 740 // send them back to the renderer together. |
| 741 int autofill_query_id_; | 741 int autofill_query_id_; |
| 742 std::vector<string16> autofill_values_; | 742 std::vector<string16> autofill_values_; |
| 743 std::vector<string16> autofill_labels_; | 743 std::vector<string16> autofill_labels_; |
| 744 std::vector<string16> autofill_icons_; | 744 std::vector<string16> autofill_icons_; |
| 745 std::vector<int> autofill_unique_ids_; | 745 std::vector<int> autofill_unique_ids_; |
| 746 | 746 |
| 747 DISALLOW_COPY_AND_ASSIGN(RenderViewHost); | 747 DISALLOW_COPY_AND_ASSIGN(RenderViewHost); |
| 748 }; | 748 }; |
| 749 | 749 |
| 750 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ | 750 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ |
| OLD | NEW |