Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(374)

Side by Side Diff: chrome/browser/renderer_host/render_view_host.h

Issue 3163044: Expose Extension Bindings to Component Applications (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: review chanecs Created 10 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « chrome/browser/renderer_host/browser_render_process_host.cc ('k') | chrome/browser/tab_contents/background_contents.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698