OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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_RENDERER_RENDER_VIEW_H_ | 5 #ifndef CHROME_RENDERER_RENDER_VIEW_H_ |
6 #define CHROME_RENDERER_RENDER_VIEW_H_ | 6 #define CHROME_RENDERER_RENDER_VIEW_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <set> | 9 #include <set> |
10 #include <string> | 10 #include <string> |
(...skipping 916 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
927 | 927 |
928 // If true, we send IPC messages when |preferred_size_| changes. | 928 // If true, we send IPC messages when |preferred_size_| changes. |
929 bool send_preferred_size_changes_; | 929 bool send_preferred_size_changes_; |
930 | 930 |
931 // The text selection the last time DidChangeSelection got called. | 931 // The text selection the last time DidChangeSelection got called. |
932 std::string last_selection_; | 932 std::string last_selection_; |
933 | 933 |
934 // Hopds a reference to the service which provides desktop notifications. | 934 // Hopds a reference to the service which provides desktop notifications. |
935 scoped_ptr<NotificationProvider> notification_provider_; | 935 scoped_ptr<NotificationProvider> notification_provider_; |
936 | 936 |
937 // Set to true if request for capturing page text has been made. | |
938 bool determine_page_text_after_loading_stops_; | |
939 | |
940 // Holds state pertaining to a navigation that we initiated. This is held by | 937 // Holds state pertaining to a navigation that we initiated. This is held by |
941 // the WebDataSource::ExtraData attribute. We use pending_navigation_state_ | 938 // the WebDataSource::ExtraData attribute. We use pending_navigation_state_ |
942 // as a temporary holder for the state until the WebDataSource corresponding | 939 // as a temporary holder for the state until the WebDataSource corresponding |
943 // to the new navigation is created. See DidCreateDataSource. | 940 // to the new navigation is created. See DidCreateDataSource. |
944 scoped_ptr<NavigationState> pending_navigation_state_; | 941 scoped_ptr<NavigationState> pending_navigation_state_; |
945 | 942 |
946 // PrintWebViewHelper handles printing. Note that this object is constructed | 943 // PrintWebViewHelper handles printing. Note that this object is constructed |
947 // when printing for the first time but only destroyed with the RenderView. | 944 // when printing for the first time but only destroyed with the RenderView. |
948 scoped_ptr<PrintWebViewHelper> print_helper_; | 945 scoped_ptr<PrintWebViewHelper> print_helper_; |
949 | 946 |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
982 ImageResourceFetcherSet image_fetchers_; | 979 ImageResourceFetcherSet image_fetchers_; |
983 | 980 |
984 typedef std::map<WebKit::WebView*, RenderView*> ViewMap; | 981 typedef std::map<WebKit::WebView*, RenderView*> ViewMap; |
985 | 982 |
986 HostZoomLevels host_zoom_levels_; | 983 HostZoomLevels host_zoom_levels_; |
987 | 984 |
988 DISALLOW_COPY_AND_ASSIGN(RenderView); | 985 DISALLOW_COPY_AND_ASSIGN(RenderView); |
989 }; | 986 }; |
990 | 987 |
991 #endif // CHROME_RENDERER_RENDER_VIEW_H_ | 988 #endif // CHROME_RENDERER_RENDER_VIEW_H_ |
OLD | NEW |