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

Side by Side Diff: content/renderer/render_frame_impl.h

Issue 2316003002: Notify the renderer if a history navigation has no subframe items. (Closed)
Patch Set: Fix indent. Created 4 years, 2 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
« no previous file with comments | « content/common/navigation_params.cc ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 1077 matching lines...) Expand 10 before | Expand all | Expand 10 after
1088 // Non-null when the RenderFrame is a local root for compositing, input, 1088 // Non-null when the RenderFrame is a local root for compositing, input,
1089 // layout, etc. A local frame is also a local root iff it does not have a 1089 // layout, etc. A local frame is also a local root iff it does not have a
1090 // parent that is a local frame. 1090 // parent that is a local frame.
1091 scoped_refptr<RenderWidget> render_widget_; 1091 scoped_refptr<RenderWidget> render_widget_;
1092 1092
1093 // Temporarily holds state pertaining to a navigation that has been initiated 1093 // Temporarily holds state pertaining to a navigation that has been initiated
1094 // until the NavigationState corresponding to the new navigation is created in 1094 // until the NavigationState corresponding to the new navigation is created in
1095 // didCreateDataSource(). 1095 // didCreateDataSource().
1096 std::unique_ptr<NavigationParams> pending_navigation_params_; 1096 std::unique_ptr<NavigationParams> pending_navigation_params_;
1097 1097
1098 // Keeps track of whether the browser process has any history items that need
1099 // to be used for subframes of this frame (in the case of a history
1100 // navigation). If not, the renderer can skip sending an IPC to the browser
1101 // and directly load any initial URLs for children itself. This state is
1102 // cleared during didStopLoading, since it is not needed after the first load
1103 // completes and is never used after the initial navigation. It is inherited
1104 // by subframes.
1105 // TODO(creis): Switch this to a data structure of unique names and
1106 // corresponding same-process PageStates in https://crbug.com/639842.
1107 bool browser_has_subtree_history_items_;
1108
1098 // Stores the current history item for this frame, so that updates to it can 1109 // Stores the current history item for this frame, so that updates to it can
1099 // be reported to the browser process via SendUpdateState. 1110 // be reported to the browser process via SendUpdateState.
1100 blink::WebHistoryItem current_history_item_; 1111 blink::WebHistoryItem current_history_item_;
1101 1112
1102 #if defined(ENABLE_PLUGINS) 1113 #if defined(ENABLE_PLUGINS)
1103 // Current text input composition text. Empty if no composition is in 1114 // Current text input composition text. Empty if no composition is in
1104 // progress. 1115 // progress.
1105 base::string16 pepper_composition_text_; 1116 base::string16 pepper_composition_text_;
1106 1117
1107 PluginPowerSaverHelper* plugin_power_saver_helper_; 1118 PluginPowerSaverHelper* plugin_power_saver_helper_;
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
1285 remote_associated_interfaces_; 1296 remote_associated_interfaces_;
1286 1297
1287 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 1298 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
1288 1299
1289 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 1300 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
1290 }; 1301 };
1291 1302
1292 } // namespace content 1303 } // namespace content
1293 1304
1294 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 1305 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW
« no previous file with comments | « content/common/navigation_params.cc ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698