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

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

Issue 1184423005: Add item and document sequence numbers to FrameNavigationEntry. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add const; git cl format Created 5 years, 6 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 "cc/surfaces/surface_id.h" 8 #include "cc/surfaces/surface_id.h"
9 #include "cc/surfaces/surface_sequence.h" 9 #include "cc/surfaces/surface_sequence.h"
10 #include "content/common/content_export.h" 10 #include "content/common/content_export.h"
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 // The URL that the error is reported for. 122 // The URL that the error is reported for.
123 IPC_STRUCT_MEMBER(GURL, url) 123 IPC_STRUCT_MEMBER(GURL, url)
124 // True if the failure is the result of navigating to a POST again 124 // True if the failure is the result of navigating to a POST again
125 // and we're going to show the POST interstitial. 125 // and we're going to show the POST interstitial.
126 IPC_STRUCT_MEMBER(bool, showing_repost_interstitial) 126 IPC_STRUCT_MEMBER(bool, showing_repost_interstitial)
127 IPC_STRUCT_END() 127 IPC_STRUCT_END()
128 128
129 IPC_STRUCT_TRAITS_BEGIN(content::FrameNavigateParams) 129 IPC_STRUCT_TRAITS_BEGIN(content::FrameNavigateParams)
130 IPC_STRUCT_TRAITS_MEMBER(page_id) 130 IPC_STRUCT_TRAITS_MEMBER(page_id)
131 IPC_STRUCT_TRAITS_MEMBER(nav_entry_id) 131 IPC_STRUCT_TRAITS_MEMBER(nav_entry_id)
132 IPC_STRUCT_TRAITS_MEMBER(item_sequence_number)
133 IPC_STRUCT_TRAITS_MEMBER(document_sequence_number)
132 IPC_STRUCT_TRAITS_MEMBER(url) 134 IPC_STRUCT_TRAITS_MEMBER(url)
133 IPC_STRUCT_TRAITS_MEMBER(base_url) 135 IPC_STRUCT_TRAITS_MEMBER(base_url)
134 IPC_STRUCT_TRAITS_MEMBER(referrer) 136 IPC_STRUCT_TRAITS_MEMBER(referrer)
135 IPC_STRUCT_TRAITS_MEMBER(transition) 137 IPC_STRUCT_TRAITS_MEMBER(transition)
136 IPC_STRUCT_TRAITS_MEMBER(redirects) 138 IPC_STRUCT_TRAITS_MEMBER(redirects)
137 IPC_STRUCT_TRAITS_MEMBER(should_update_history) 139 IPC_STRUCT_TRAITS_MEMBER(should_update_history)
138 IPC_STRUCT_TRAITS_MEMBER(searchable_form_url) 140 IPC_STRUCT_TRAITS_MEMBER(searchable_form_url)
139 IPC_STRUCT_TRAITS_MEMBER(searchable_form_encoding) 141 IPC_STRUCT_TRAITS_MEMBER(searchable_form_encoding)
140 IPC_STRUCT_TRAITS_MEMBER(contents_mime_type) 142 IPC_STRUCT_TRAITS_MEMBER(contents_mime_type)
141 IPC_STRUCT_TRAITS_MEMBER(socket_address) 143 IPC_STRUCT_TRAITS_MEMBER(socket_address)
(...skipping 853 matching lines...) Expand 10 before | Expand all | Expand 10 after
995 FrameMsg_PostMessage_Params) 997 FrameMsg_PostMessage_Params)
996 998
997 #if defined(OS_MACOSX) || defined(OS_ANDROID) 999 #if defined(OS_MACOSX) || defined(OS_ANDROID)
998 1000
999 // Message to show/hide a popup menu using native controls. 1001 // Message to show/hide a popup menu using native controls.
1000 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, 1002 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup,
1001 FrameHostMsg_ShowPopup_Params) 1003 FrameHostMsg_ShowPopup_Params)
1002 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup) 1004 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup)
1003 1005
1004 #endif 1006 #endif
OLDNEW
« no previous file with comments | « content/browser/frame_host/navigation_entry_impl.cc ('k') | content/public/common/frame_navigate_params.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698