| 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 <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 572 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 583 | 583 |
| 584 IPC_STRUCT_TRAITS_BEGIN(content::CSPViolationParams) | 584 IPC_STRUCT_TRAITS_BEGIN(content::CSPViolationParams) |
| 585 IPC_STRUCT_TRAITS_MEMBER(directive) | 585 IPC_STRUCT_TRAITS_MEMBER(directive) |
| 586 IPC_STRUCT_TRAITS_MEMBER(effective_directive) | 586 IPC_STRUCT_TRAITS_MEMBER(effective_directive) |
| 587 IPC_STRUCT_TRAITS_MEMBER(console_message) | 587 IPC_STRUCT_TRAITS_MEMBER(console_message) |
| 588 IPC_STRUCT_TRAITS_MEMBER(blocked_url) | 588 IPC_STRUCT_TRAITS_MEMBER(blocked_url) |
| 589 IPC_STRUCT_TRAITS_MEMBER(report_endpoints) | 589 IPC_STRUCT_TRAITS_MEMBER(report_endpoints) |
| 590 IPC_STRUCT_TRAITS_MEMBER(header) | 590 IPC_STRUCT_TRAITS_MEMBER(header) |
| 591 IPC_STRUCT_TRAITS_MEMBER(disposition) | 591 IPC_STRUCT_TRAITS_MEMBER(disposition) |
| 592 IPC_STRUCT_TRAITS_MEMBER(after_redirect) | 592 IPC_STRUCT_TRAITS_MEMBER(after_redirect) |
| 593 IPC_STRUCT_TRAITS_MEMBER(source_location) |
| 593 IPC_STRUCT_TRAITS_END() | 594 IPC_STRUCT_TRAITS_END() |
| 594 | 595 |
| 595 IPC_STRUCT_TRAITS_BEGIN(content::FileChooserFileInfo) | 596 IPC_STRUCT_TRAITS_BEGIN(content::FileChooserFileInfo) |
| 596 IPC_STRUCT_TRAITS_MEMBER(file_path) | 597 IPC_STRUCT_TRAITS_MEMBER(file_path) |
| 597 IPC_STRUCT_TRAITS_MEMBER(display_name) | 598 IPC_STRUCT_TRAITS_MEMBER(display_name) |
| 598 IPC_STRUCT_TRAITS_MEMBER(file_system_url) | 599 IPC_STRUCT_TRAITS_MEMBER(file_system_url) |
| 599 IPC_STRUCT_TRAITS_MEMBER(modification_time) | 600 IPC_STRUCT_TRAITS_MEMBER(modification_time) |
| 600 IPC_STRUCT_TRAITS_MEMBER(length) | 601 IPC_STRUCT_TRAITS_MEMBER(length) |
| 601 IPC_STRUCT_TRAITS_MEMBER(is_directory) | 602 IPC_STRUCT_TRAITS_MEMBER(is_directory) |
| 602 IPC_STRUCT_TRAITS_END() | 603 IPC_STRUCT_TRAITS_END() |
| (...skipping 1048 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1651 int /* nfr_request_id */, | 1652 int /* nfr_request_id */, |
| 1652 float /* distance */) | 1653 float /* distance */) |
| 1653 | 1654 |
| 1654 IPC_MESSAGE_ROUTED0(FrameHostMsg_NavigationHandledByEmbedder) | 1655 IPC_MESSAGE_ROUTED0(FrameHostMsg_NavigationHandledByEmbedder) |
| 1655 #endif | 1656 #endif |
| 1656 | 1657 |
| 1657 // Adding a new message? Stick to the sort order above: first platform | 1658 // Adding a new message? Stick to the sort order above: first platform |
| 1658 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1659 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
| 1659 // platform independent FrameHostMsg, then ifdefs for platform specific | 1660 // platform independent FrameHostMsg, then ifdefs for platform specific |
| 1660 // FrameHostMsg. | 1661 // FrameHostMsg. |
| OLD | NEW |