| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| 6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 1072 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1083 // Non-null when the RenderFrame is a local root for compositing, input, | 1083 // Non-null when the RenderFrame is a local root for compositing, input, |
| 1084 // layout, etc. A local frame is also a local root iff it does not have a | 1084 // layout, etc. A local frame is also a local root iff it does not have a |
| 1085 // parent that is a local frame. | 1085 // parent that is a local frame. |
| 1086 scoped_refptr<RenderWidget> render_widget_; | 1086 scoped_refptr<RenderWidget> render_widget_; |
| 1087 | 1087 |
| 1088 // Temporarily holds state pertaining to a navigation that has been initiated | 1088 // Temporarily holds state pertaining to a navigation that has been initiated |
| 1089 // until the NavigationState corresponding to the new navigation is created in | 1089 // until the NavigationState corresponding to the new navigation is created in |
| 1090 // didCreateDataSource(). | 1090 // didCreateDataSource(). |
| 1091 std::unique_ptr<NavigationParams> pending_navigation_params_; | 1091 std::unique_ptr<NavigationParams> pending_navigation_params_; |
| 1092 | 1092 |
| 1093 // Keeps track of whether the browser process has any history items that need |
| 1094 // to be used for subframes of this frame (in the case of a history |
| 1095 // navigation). If not, the renderer can skip sending an IPC to the browser |
| 1096 // and directly load any initial URLs for children itself. This state is |
| 1097 // cleared during didStopLoading, since it is not needed after the first load |
| 1098 // completes and is never used after the initial navigation. It is inherited |
| 1099 // by subframes. |
| 1100 // TODO(creis): Switch this to a data structure of unique names and |
| 1101 // corresponding same-process PageStates in https://crbug.com/639842. |
| 1102 bool browser_has_subtree_history_items_; |
| 1103 |
| 1093 // Stores the current history item for this frame, so that updates to it can | 1104 // Stores the current history item for this frame, so that updates to it can |
| 1094 // be reported to the browser process via SendUpdateState. | 1105 // be reported to the browser process via SendUpdateState. |
| 1095 blink::WebHistoryItem current_history_item_; | 1106 blink::WebHistoryItem current_history_item_; |
| 1096 | 1107 |
| 1097 #if defined(ENABLE_PLUGINS) | 1108 #if defined(ENABLE_PLUGINS) |
| 1098 // Current text input composition text. Empty if no composition is in | 1109 // Current text input composition text. Empty if no composition is in |
| 1099 // progress. | 1110 // progress. |
| 1100 base::string16 pepper_composition_text_; | 1111 base::string16 pepper_composition_text_; |
| 1101 | 1112 |
| 1102 PluginPowerSaverHelper* plugin_power_saver_helper_; | 1113 PluginPowerSaverHelper* plugin_power_saver_helper_; |
| (...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1282 mojom::FrameHostPtr frame_host_; | 1293 mojom::FrameHostPtr frame_host_; |
| 1283 | 1294 |
| 1284 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1295 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1285 | 1296 |
| 1286 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1297 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1287 }; | 1298 }; |
| 1288 | 1299 |
| 1289 } // namespace content | 1300 } // namespace content |
| 1290 | 1301 |
| 1291 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1302 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |