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

Side by Side Diff: content/common/frame_messages.h

Issue 1250163002: Fix cross-process location.replace for main frames and subframes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase and remove some code Created 4 years, 11 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 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 // IPC messages for interacting with frames. 5 // IPC messages for interacting with frames.
6 // Multiply-included message file, hence no include guard. 6 // Multiply-included message file, hence no include guard.
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
201 201
202 // This is the value from the browser (copied from the navigation request) 202 // This is the value from the browser (copied from the navigation request)
203 // indicating whether it intended to make a new entry. TODO(avi): Remove this 203 // indicating whether it intended to make a new entry. TODO(avi): Remove this
204 // when the pending entry situation is made sane and the browser keeps them 204 // when the pending entry situation is made sane and the browser keeps them
205 // around long enough to match them via nav_entry_id. 205 // around long enough to match them via nav_entry_id.
206 IPC_STRUCT_MEMBER(bool, intended_as_new_entry) 206 IPC_STRUCT_MEMBER(bool, intended_as_new_entry)
207 207
208 // Whether this commit created a new entry. 208 // Whether this commit created a new entry.
209 IPC_STRUCT_MEMBER(bool, did_create_new_entry) 209 IPC_STRUCT_MEMBER(bool, did_create_new_entry)
210 210
211 // Whether this commit should replace the current entry.
212 IPC_STRUCT_MEMBER(bool, should_replace_current_entry)
213
211 // Information regarding the security of the connection (empty if the 214 // Information regarding the security of the connection (empty if the
212 // connection was not secure). 215 // connection was not secure).
213 IPC_STRUCT_MEMBER(std::string, security_info) 216 IPC_STRUCT_MEMBER(std::string, security_info)
214 217
215 // The gesture that initiated this navigation. 218 // The gesture that initiated this navigation.
216 IPC_STRUCT_MEMBER(content::NavigationGesture, gesture) 219 IPC_STRUCT_MEMBER(content::NavigationGesture, gesture)
217 220
218 // True if this was a post request. 221 // True if this was a post request.
219 IPC_STRUCT_MEMBER(bool, is_post) 222 IPC_STRUCT_MEMBER(bool, is_post)
220 223
(...skipping 1146 matching lines...) Expand 10 before | Expand all | Expand 10 after
1367 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, 1370 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup,
1368 FrameHostMsg_ShowPopup_Params) 1371 FrameHostMsg_ShowPopup_Params)
1369 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup) 1372 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup)
1370 1373
1371 #endif 1374 #endif
1372 1375
1373 // Adding a new message? Stick to the sort order above: first platform 1376 // Adding a new message? Stick to the sort order above: first platform
1374 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then 1377 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then
1375 // platform independent FrameHostMsg, then ifdefs for platform specific 1378 // platform independent FrameHostMsg, then ifdefs for platform specific
1376 // FrameHostMsg. 1379 // FrameHostMsg.
OLDNEW
« no previous file with comments | « content/browser/frame_host/navigation_controller_impl_unittest.cc ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698