| 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 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 275 | 275 |
| 276 IPC_STRUCT_TRAITS_BEGIN(content::CommonNavigationParams) | 276 IPC_STRUCT_TRAITS_BEGIN(content::CommonNavigationParams) |
| 277 IPC_STRUCT_TRAITS_MEMBER(url) | 277 IPC_STRUCT_TRAITS_MEMBER(url) |
| 278 IPC_STRUCT_TRAITS_MEMBER(referrer) | 278 IPC_STRUCT_TRAITS_MEMBER(referrer) |
| 279 IPC_STRUCT_TRAITS_MEMBER(transition) | 279 IPC_STRUCT_TRAITS_MEMBER(transition) |
| 280 IPC_STRUCT_TRAITS_MEMBER(navigation_type) | 280 IPC_STRUCT_TRAITS_MEMBER(navigation_type) |
| 281 IPC_STRUCT_TRAITS_MEMBER(allow_download) | 281 IPC_STRUCT_TRAITS_MEMBER(allow_download) |
| 282 IPC_STRUCT_TRAITS_MEMBER(should_replace_current_entry) | 282 IPC_STRUCT_TRAITS_MEMBER(should_replace_current_entry) |
| 283 IPC_STRUCT_TRAITS_MEMBER(ui_timestamp) | 283 IPC_STRUCT_TRAITS_MEMBER(ui_timestamp) |
| 284 IPC_STRUCT_TRAITS_MEMBER(report_type) | 284 IPC_STRUCT_TRAITS_MEMBER(report_type) |
| 285 IPC_STRUCT_TRAITS_MEMBER(base_url_for_data_url) | 285 IPC_STRUCT_TRAITS_MEMBER(data_url_with_base_url) |
| 286 IPC_STRUCT_TRAITS_MEMBER(history_url_for_data_url) | 286 IPC_STRUCT_TRAITS_MEMBER(history_url_for_data_url) |
| 287 IPC_STRUCT_TRAITS_MEMBER(lofi_state) | 287 IPC_STRUCT_TRAITS_MEMBER(lofi_state) |
| 288 IPC_STRUCT_TRAITS_MEMBER(navigation_start) | 288 IPC_STRUCT_TRAITS_MEMBER(navigation_start) |
| 289 IPC_STRUCT_TRAITS_END() | 289 IPC_STRUCT_TRAITS_END() |
| 290 | 290 |
| 291 IPC_STRUCT_TRAITS_BEGIN(content::BeginNavigationParams) | 291 IPC_STRUCT_TRAITS_BEGIN(content::BeginNavigationParams) |
| 292 IPC_STRUCT_TRAITS_MEMBER(method) | 292 IPC_STRUCT_TRAITS_MEMBER(method) |
| 293 IPC_STRUCT_TRAITS_MEMBER(headers) | 293 IPC_STRUCT_TRAITS_MEMBER(headers) |
| 294 IPC_STRUCT_TRAITS_MEMBER(load_flags) | 294 IPC_STRUCT_TRAITS_MEMBER(load_flags) |
| 295 IPC_STRUCT_TRAITS_MEMBER(has_user_gesture) | 295 IPC_STRUCT_TRAITS_MEMBER(has_user_gesture) |
| (...skipping 942 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1238 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, | 1238 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, |
| 1239 FrameHostMsg_ShowPopup_Params) | 1239 FrameHostMsg_ShowPopup_Params) |
| 1240 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup) | 1240 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup) |
| 1241 | 1241 |
| 1242 #endif | 1242 #endif |
| 1243 | 1243 |
| 1244 // Adding a new message? Stick to the sort order above: first platform | 1244 // Adding a new message? Stick to the sort order above: first platform |
| 1245 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1245 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
| 1246 // platform independent FrameHostMsg, then ifdefs for platform specific | 1246 // platform independent FrameHostMsg, then ifdefs for platform specific |
| 1247 // FrameHostMsg. | 1247 // FrameHostMsg. |
| OLD | NEW |