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

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

Issue 2741313002: Renamed WasWithinSamePage to WasWithinSameDocument. (Closed)
Patch Set: Even moar fixes 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 // The gesture that initiated this navigation. 237 // The gesture that initiated this navigation.
238 IPC_STRUCT_MEMBER(content::NavigationGesture, gesture) 238 IPC_STRUCT_MEMBER(content::NavigationGesture, gesture)
239 239
240 // The HTTP method used by the navigation. 240 // The HTTP method used by the navigation.
241 IPC_STRUCT_MEMBER(std::string, method) 241 IPC_STRUCT_MEMBER(std::string, method)
242 242
243 // The POST body identifier. -1 if it doesn't exist. 243 // The POST body identifier. -1 if it doesn't exist.
244 IPC_STRUCT_MEMBER(int64_t, post_id) 244 IPC_STRUCT_MEMBER(int64_t, post_id)
245 245
246 // Whether the frame navigation resulted in no change to the documents within 246 // Whether the frame navigation resulted in no change to the documents within
247 // the page. For example, the navigation may have just resulted in scrolling 247 // the page. For example, the navigation may have just resulted in scrolling
Charlie Reis 2017/03/15 02:43:10 Heh, this sentence is all kinds of confusing. :)
Eugene But (OOO till 7-30) 2017/03/15 16:16:17 Done.
248 // to a named anchor. 248 // to a named anchor.
249 IPC_STRUCT_MEMBER(bool, was_within_same_page) 249 IPC_STRUCT_MEMBER(bool, was_within_same_document)
250 250
251 // The status code of the HTTP request. 251 // The status code of the HTTP request.
252 IPC_STRUCT_MEMBER(int, http_status_code) 252 IPC_STRUCT_MEMBER(int, http_status_code)
253 253
254 // This flag is used to warn if the renderer is displaying an error page, 254 // This flag is used to warn if the renderer is displaying an error page,
255 // so that we can set the appropriate page type. 255 // so that we can set the appropriate page type.
256 IPC_STRUCT_MEMBER(bool, url_is_unreachable) 256 IPC_STRUCT_MEMBER(bool, url_is_unreachable)
257 257
258 // Serialized history item state to store in the navigation entry. 258 // Serialized history item state to store in the navigation entry.
259 IPC_STRUCT_MEMBER(content::PageState, page_state) 259 IPC_STRUCT_MEMBER(content::PageState, page_state)
(...skipping 1350 matching lines...) Expand 10 before | Expand all | Expand 10 after
1610 // nearest find result in the sending frame. 1610 // nearest find result in the sending frame.
1611 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, 1611 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply,
1612 int /* nfr_request_id */, 1612 int /* nfr_request_id */,
1613 float /* distance */) 1613 float /* distance */)
1614 #endif 1614 #endif
1615 1615
1616 // Adding a new message? Stick to the sort order above: first platform 1616 // Adding a new message? Stick to the sort order above: first platform
1617 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then 1617 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then
1618 // platform independent FrameHostMsg, then ifdefs for platform specific 1618 // platform independent FrameHostMsg, then ifdefs for platform specific
1619 // FrameHostMsg. 1619 // FrameHostMsg.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698