| 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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 IPC_ENUM_TRAITS_MIN_MAX_VALUE(content::LoFiState, | 105 IPC_ENUM_TRAITS_MIN_MAX_VALUE(content::LoFiState, |
| 106 content::LOFI_UNSPECIFIED, | 106 content::LOFI_UNSPECIFIED, |
| 107 content::LOFI_ON) | 107 content::LOFI_ON) |
| 108 IPC_ENUM_TRAITS_MAX_VALUE(content::FileChooserParams::Mode, | 108 IPC_ENUM_TRAITS_MAX_VALUE(content::FileChooserParams::Mode, |
| 109 content::FileChooserParams::Save) | 109 content::FileChooserParams::Save) |
| 110 | 110 |
| 111 IPC_STRUCT_TRAITS_BEGIN(blink::WebFindOptions) | 111 IPC_STRUCT_TRAITS_BEGIN(blink::WebFindOptions) |
| 112 IPC_STRUCT_TRAITS_MEMBER(forward) | 112 IPC_STRUCT_TRAITS_MEMBER(forward) |
| 113 IPC_STRUCT_TRAITS_MEMBER(matchCase) | 113 IPC_STRUCT_TRAITS_MEMBER(matchCase) |
| 114 IPC_STRUCT_TRAITS_MEMBER(findNext) | 114 IPC_STRUCT_TRAITS_MEMBER(findNext) |
| 115 IPC_STRUCT_TRAITS_MEMBER(force) |
| 115 IPC_STRUCT_TRAITS_END() | 116 IPC_STRUCT_TRAITS_END() |
| 116 | 117 |
| 117 IPC_STRUCT_TRAITS_BEGIN(content::ColorSuggestion) | 118 IPC_STRUCT_TRAITS_BEGIN(content::ColorSuggestion) |
| 118 IPC_STRUCT_TRAITS_MEMBER(color) | 119 IPC_STRUCT_TRAITS_MEMBER(color) |
| 119 IPC_STRUCT_TRAITS_MEMBER(label) | 120 IPC_STRUCT_TRAITS_MEMBER(label) |
| 120 IPC_STRUCT_TRAITS_END() | 121 IPC_STRUCT_TRAITS_END() |
| 121 | 122 |
| 122 IPC_STRUCT_TRAITS_BEGIN(content::ContextMenuParams) | 123 IPC_STRUCT_TRAITS_BEGIN(content::ContextMenuParams) |
| 123 IPC_STRUCT_TRAITS_MEMBER(media_type) | 124 IPC_STRUCT_TRAITS_MEMBER(media_type) |
| 124 IPC_STRUCT_TRAITS_MEMBER(x) | 125 IPC_STRUCT_TRAITS_MEMBER(x) |
| (...skipping 1444 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1569 // nearest find result in the sending frame. | 1570 // nearest find result in the sending frame. |
| 1570 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, | 1571 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, |
| 1571 int /* nfr_request_id */, | 1572 int /* nfr_request_id */, |
| 1572 float /* distance */) | 1573 float /* distance */) |
| 1573 #endif | 1574 #endif |
| 1574 | 1575 |
| 1575 // Adding a new message? Stick to the sort order above: first platform | 1576 // Adding a new message? Stick to the sort order above: first platform |
| 1576 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1577 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
| 1577 // platform independent FrameHostMsg, then ifdefs for platform specific | 1578 // platform independent FrameHostMsg, then ifdefs for platform specific |
| 1578 // FrameHostMsg. | 1579 // FrameHostMsg. |
| OLD | NEW |