| 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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 IPC_ENUM_TRAITS_MAX_VALUE(blink::WebFrameOwnerProperties::ScrollingMode, | 98 IPC_ENUM_TRAITS_MAX_VALUE(blink::WebFrameOwnerProperties::ScrollingMode, |
| 99 blink::WebFrameOwnerProperties::ScrollingMode::Last) | 99 blink::WebFrameOwnerProperties::ScrollingMode::Last) |
| 100 IPC_ENUM_TRAITS_MAX_VALUE(blink::WebPermissionType, | 100 IPC_ENUM_TRAITS_MAX_VALUE(blink::WebPermissionType, |
| 101 blink::WebPermissionTypeLast) | 101 blink::WebPermissionTypeLast) |
| 102 IPC_ENUM_TRAITS_MAX_VALUE(content::StopFindAction, | 102 IPC_ENUM_TRAITS_MAX_VALUE(content::StopFindAction, |
| 103 content::STOP_FIND_ACTION_LAST) | 103 content::STOP_FIND_ACTION_LAST) |
| 104 IPC_ENUM_TRAITS(blink::WebSandboxFlags) // Bitmask. | 104 IPC_ENUM_TRAITS(blink::WebSandboxFlags) // Bitmask. |
| 105 IPC_ENUM_TRAITS_MAX_VALUE(blink::WebTreeScopeType, | 105 IPC_ENUM_TRAITS_MAX_VALUE(blink::WebTreeScopeType, |
| 106 blink::WebTreeScopeType::Last) | 106 blink::WebTreeScopeType::Last) |
| 107 IPC_ENUM_TRAITS_MAX_VALUE(ui::MenuSourceType, ui::MENU_SOURCE_TYPE_LAST) | 107 IPC_ENUM_TRAITS_MAX_VALUE(ui::MenuSourceType, ui::MENU_SOURCE_TYPE_LAST) |
| 108 IPC_ENUM_TRAITS_MIN_MAX_VALUE(content::PreviewsState, | 108 IPC_ENUM_TRAITS_MIN_MAX_VALUE(content::PreviewsTypes, |
| 109 content::PREVIEWS_UNSPECIFIED, | 109 content::PREVIEWS_UNSPECIFIED, |
| 110 content::PREVIEWS_STATE_LAST) | 110 content::PREVIEWS_STATE_LAST) |
| 111 IPC_ENUM_TRAITS_MAX_VALUE(content::FileChooserParams::Mode, | 111 IPC_ENUM_TRAITS_MAX_VALUE(content::FileChooserParams::Mode, |
| 112 content::FileChooserParams::Save) | 112 content::FileChooserParams::Save) |
| 113 | 113 |
| 114 IPC_STRUCT_TRAITS_BEGIN(blink::WebFindOptions) | 114 IPC_STRUCT_TRAITS_BEGIN(blink::WebFindOptions) |
| 115 IPC_STRUCT_TRAITS_MEMBER(forward) | 115 IPC_STRUCT_TRAITS_MEMBER(forward) |
| 116 IPC_STRUCT_TRAITS_MEMBER(matchCase) | 116 IPC_STRUCT_TRAITS_MEMBER(matchCase) |
| 117 IPC_STRUCT_TRAITS_MEMBER(findNext) | 117 IPC_STRUCT_TRAITS_MEMBER(findNext) |
| 118 IPC_STRUCT_TRAITS_MEMBER(force) | 118 IPC_STRUCT_TRAITS_MEMBER(force) |
| (...skipping 1446 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1565 // nearest find result in the sending frame. | 1565 // nearest find result in the sending frame. |
| 1566 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, | 1566 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, |
| 1567 int /* nfr_request_id */, | 1567 int /* nfr_request_id */, |
| 1568 float /* distance */) | 1568 float /* distance */) |
| 1569 #endif | 1569 #endif |
| 1570 | 1570 |
| 1571 // Adding a new message? Stick to the sort order above: first platform | 1571 // Adding a new message? Stick to the sort order above: first platform |
| 1572 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1572 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
| 1573 // platform independent FrameHostMsg, then ifdefs for platform specific | 1573 // platform independent FrameHostMsg, then ifdefs for platform specific |
| 1574 // FrameHostMsg. | 1574 // FrameHostMsg. |
| OLD | NEW |