| 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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 blink::WebContextMenuData::InputFieldTypeLast) | 99 blink::WebContextMenuData::InputFieldTypeLast) |
| 100 IPC_ENUM_TRAITS_MAX_VALUE(blink::WebFocusType, blink::WebFocusTypeLast) | 100 IPC_ENUM_TRAITS_MAX_VALUE(blink::WebFocusType, blink::WebFocusTypeLast) |
| 101 IPC_ENUM_TRAITS_MAX_VALUE(blink::WebFrameOwnerProperties::ScrollingMode, | 101 IPC_ENUM_TRAITS_MAX_VALUE(blink::WebFrameOwnerProperties::ScrollingMode, |
| 102 blink::WebFrameOwnerProperties::ScrollingMode::Last) | 102 blink::WebFrameOwnerProperties::ScrollingMode::Last) |
| 103 IPC_ENUM_TRAITS_MAX_VALUE(content::StopFindAction, | 103 IPC_ENUM_TRAITS_MAX_VALUE(content::StopFindAction, |
| 104 content::STOP_FIND_ACTION_LAST) | 104 content::STOP_FIND_ACTION_LAST) |
| 105 IPC_ENUM_TRAITS(blink::WebSandboxFlags) // Bitmask. | 105 IPC_ENUM_TRAITS(blink::WebSandboxFlags) // Bitmask. |
| 106 IPC_ENUM_TRAITS_MAX_VALUE(blink::WebTreeScopeType, | 106 IPC_ENUM_TRAITS_MAX_VALUE(blink::WebTreeScopeType, |
| 107 blink::WebTreeScopeType::Last) | 107 blink::WebTreeScopeType::Last) |
| 108 IPC_ENUM_TRAITS_MAX_VALUE(ui::MenuSourceType, ui::MENU_SOURCE_TYPE_LAST) | 108 IPC_ENUM_TRAITS_MAX_VALUE(ui::MenuSourceType, ui::MENU_SOURCE_TYPE_LAST) |
| 109 IPC_ENUM_TRAITS_MIN_MAX_VALUE(content::PreviewsState, | |
| 110 content::PREVIEWS_UNSPECIFIED, | |
| 111 content::PREVIEWS_STATE_LAST) | |
| 112 IPC_ENUM_TRAITS_MAX_VALUE(content::FileChooserParams::Mode, | 109 IPC_ENUM_TRAITS_MAX_VALUE(content::FileChooserParams::Mode, |
| 113 content::FileChooserParams::Save) | 110 content::FileChooserParams::Save) |
| 114 IPC_ENUM_TRAITS_MAX_VALUE(content::CSPDirective::Name, | 111 IPC_ENUM_TRAITS_MAX_VALUE(content::CSPDirective::Name, |
| 115 content::CSPDirective::NameLast) | 112 content::CSPDirective::NameLast) |
| 116 IPC_ENUM_TRAITS_MAX_VALUE(blink::WebFeaturePolicyFeature, | 113 IPC_ENUM_TRAITS_MAX_VALUE(blink::WebFeaturePolicyFeature, |
| 117 blink::WebFeaturePolicyFeature::LAST_FEATURE) | 114 blink::WebFeaturePolicyFeature::LAST_FEATURE) |
| 118 | 115 |
| 119 IPC_STRUCT_TRAITS_BEGIN(blink::WebFindOptions) | 116 IPC_STRUCT_TRAITS_BEGIN(blink::WebFindOptions) |
| 120 IPC_STRUCT_TRAITS_MEMBER(forward) | 117 IPC_STRUCT_TRAITS_MEMBER(forward) |
| 121 IPC_STRUCT_TRAITS_MEMBER(matchCase) | 118 IPC_STRUCT_TRAITS_MEMBER(matchCase) |
| (...skipping 1489 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1611 // nearest find result in the sending frame. | 1608 // nearest find result in the sending frame. |
| 1612 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, | 1609 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, |
| 1613 int /* nfr_request_id */, | 1610 int /* nfr_request_id */, |
| 1614 float /* distance */) | 1611 float /* distance */) |
| 1615 #endif | 1612 #endif |
| 1616 | 1613 |
| 1617 // Adding a new message? Stick to the sort order above: first platform | 1614 // Adding a new message? Stick to the sort order above: first platform |
| 1618 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1615 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
| 1619 // platform independent FrameHostMsg, then ifdefs for platform specific | 1616 // platform independent FrameHostMsg, then ifdefs for platform specific |
| 1620 // FrameHostMsg. | 1617 // FrameHostMsg. |
| OLD | NEW |