| OLD | NEW |
| 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 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 // and we're going to show the POST interstitial. | 147 // and we're going to show the POST interstitial. |
| 148 IPC_STRUCT_MEMBER(bool, showing_repost_interstitial) | 148 IPC_STRUCT_MEMBER(bool, showing_repost_interstitial) |
| 149 // True if the navigation was canceled because it was ignored by a handler, | 149 // True if the navigation was canceled because it was ignored by a handler, |
| 150 // e.g. shouldOverrideUrlLoading. | 150 // e.g. shouldOverrideUrlLoading. |
| 151 IPC_STRUCT_MEMBER(bool, was_ignored_by_handler) | 151 IPC_STRUCT_MEMBER(bool, was_ignored_by_handler) |
| 152 IPC_STRUCT_END() | 152 IPC_STRUCT_END() |
| 153 | 153 |
| 154 IPC_STRUCT_TRAITS_BEGIN(content::FrameNavigateParams) | 154 IPC_STRUCT_TRAITS_BEGIN(content::FrameNavigateParams) |
| 155 IPC_STRUCT_TRAITS_MEMBER(page_id) | 155 IPC_STRUCT_TRAITS_MEMBER(page_id) |
| 156 IPC_STRUCT_TRAITS_MEMBER(nav_entry_id) | 156 IPC_STRUCT_TRAITS_MEMBER(nav_entry_id) |
| 157 IPC_STRUCT_TRAITS_MEMBER(frame_unique_name) |
| 157 IPC_STRUCT_TRAITS_MEMBER(item_sequence_number) | 158 IPC_STRUCT_TRAITS_MEMBER(item_sequence_number) |
| 158 IPC_STRUCT_TRAITS_MEMBER(document_sequence_number) | 159 IPC_STRUCT_TRAITS_MEMBER(document_sequence_number) |
| 159 IPC_STRUCT_TRAITS_MEMBER(url) | 160 IPC_STRUCT_TRAITS_MEMBER(url) |
| 160 IPC_STRUCT_TRAITS_MEMBER(base_url) | 161 IPC_STRUCT_TRAITS_MEMBER(base_url) |
| 161 IPC_STRUCT_TRAITS_MEMBER(referrer) | 162 IPC_STRUCT_TRAITS_MEMBER(referrer) |
| 162 IPC_STRUCT_TRAITS_MEMBER(transition) | 163 IPC_STRUCT_TRAITS_MEMBER(transition) |
| 163 IPC_STRUCT_TRAITS_MEMBER(redirects) | 164 IPC_STRUCT_TRAITS_MEMBER(redirects) |
| 164 IPC_STRUCT_TRAITS_MEMBER(should_update_history) | 165 IPC_STRUCT_TRAITS_MEMBER(should_update_history) |
| 165 IPC_STRUCT_TRAITS_MEMBER(searchable_form_url) | 166 IPC_STRUCT_TRAITS_MEMBER(searchable_form_url) |
| 166 IPC_STRUCT_TRAITS_MEMBER(searchable_form_encoding) | 167 IPC_STRUCT_TRAITS_MEMBER(searchable_form_encoding) |
| (...skipping 1068 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1235 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, | 1236 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, |
| 1236 FrameHostMsg_ShowPopup_Params) | 1237 FrameHostMsg_ShowPopup_Params) |
| 1237 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup) | 1238 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup) |
| 1238 | 1239 |
| 1239 #endif | 1240 #endif |
| 1240 | 1241 |
| 1241 // Adding a new message? Stick to the sort order above: first platform | 1242 // Adding a new message? Stick to the sort order above: first platform |
| 1242 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1243 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
| 1243 // platform independent FrameHostMsg, then ifdefs for platform specific | 1244 // platform independent FrameHostMsg, then ifdefs for platform specific |
| 1244 // FrameHostMsg. | 1245 // FrameHostMsg. |
| OLD | NEW |