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

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

Issue 2741313002: Renamed WasWithinSamePage to WasWithinSameDocument. (Closed)
Patch Set: Addressed review comments Created 3 years, 9 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 226 matching lines...) Expand 10 before | Expand all | Expand 10 after
237 237
238 // The gesture that initiated this navigation. 238 // The gesture that initiated this navigation.
239 IPC_STRUCT_MEMBER(content::NavigationGesture, gesture) 239 IPC_STRUCT_MEMBER(content::NavigationGesture, gesture)
240 240
241 // The HTTP method used by the navigation. 241 // The HTTP method used by the navigation.
242 IPC_STRUCT_MEMBER(std::string, method) 242 IPC_STRUCT_MEMBER(std::string, method)
243 243
244 // The POST body identifier. -1 if it doesn't exist. 244 // The POST body identifier. -1 if it doesn't exist.
245 IPC_STRUCT_MEMBER(int64_t, post_id) 245 IPC_STRUCT_MEMBER(int64_t, post_id)
246 246
247 // Whether the frame navigation resulted in no change to the documents within 247 // Whether the frame navigation resulted in no change of the document within
248 // the page. For example, the navigation may have just resulted in scrolling 248 // the frame. For example, the navigation may have just resulted in
249 // to a named anchor. 249 // scrolling to a named anchor.
250 IPC_STRUCT_MEMBER(bool, was_within_same_page) 250 IPC_STRUCT_MEMBER(bool, was_within_same_document)
251 251
252 // The status code of the HTTP request. 252 // The status code of the HTTP request.
253 IPC_STRUCT_MEMBER(int, http_status_code) 253 IPC_STRUCT_MEMBER(int, http_status_code)
254 254
255 // This flag is used to warn if the renderer is displaying an error page, 255 // This flag is used to warn if the renderer is displaying an error page,
256 // so that we can set the appropriate page type. 256 // so that we can set the appropriate page type.
257 IPC_STRUCT_MEMBER(bool, url_is_unreachable) 257 IPC_STRUCT_MEMBER(bool, url_is_unreachable)
258 258
259 // Serialized history item state to store in the navigation entry. 259 // Serialized history item state to store in the navigation entry.
260 IPC_STRUCT_MEMBER(content::PageState, page_state) 260 IPC_STRUCT_MEMBER(content::PageState, page_state)
(...skipping 1358 matching lines...) Expand 10 before | Expand all | Expand 10 after
1619 int /* nfr_request_id */, 1619 int /* nfr_request_id */,
1620 float /* distance */) 1620 float /* distance */)
1621 1621
1622 IPC_MESSAGE_ROUTED0(FrameHostMsg_NavigationHandledByEmbedder) 1622 IPC_MESSAGE_ROUTED0(FrameHostMsg_NavigationHandledByEmbedder)
1623 #endif 1623 #endif
1624 1624
1625 // Adding a new message? Stick to the sort order above: first platform 1625 // Adding a new message? Stick to the sort order above: first platform
1626 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then 1626 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then
1627 // platform independent FrameHostMsg, then ifdefs for platform specific 1627 // platform independent FrameHostMsg, then ifdefs for platform specific
1628 // FrameHostMsg. 1628 // FrameHostMsg.
OLDNEW
« no previous file with comments | « content/browser/web_contents/web_contents_view_aura_browsertest.cc ('k') | content/public/renderer/navigation_state.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698