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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 content::JAVASCRIPT_MESSAGE_TYPE_ALERT, | 74 content::JAVASCRIPT_MESSAGE_TYPE_ALERT, |
75 content::JAVASCRIPT_MESSAGE_TYPE_PROMPT) | 75 content::JAVASCRIPT_MESSAGE_TYPE_PROMPT) |
76 IPC_ENUM_TRAITS_MAX_VALUE(FrameMsg_Navigate_Type::Value, | 76 IPC_ENUM_TRAITS_MAX_VALUE(FrameMsg_Navigate_Type::Value, |
77 FrameMsg_Navigate_Type::NAVIGATE_TYPE_LAST) | 77 FrameMsg_Navigate_Type::NAVIGATE_TYPE_LAST) |
78 IPC_ENUM_TRAITS_MAX_VALUE(FrameMsg_UILoadMetricsReportType::Value, | 78 IPC_ENUM_TRAITS_MAX_VALUE(FrameMsg_UILoadMetricsReportType::Value, |
79 FrameMsg_UILoadMetricsReportType::REPORT_TYPE_LAST) | 79 FrameMsg_UILoadMetricsReportType::REPORT_TYPE_LAST) |
80 IPC_ENUM_TRAITS_MAX_VALUE(blink::WebContextMenuData::MediaType, | 80 IPC_ENUM_TRAITS_MAX_VALUE(blink::WebContextMenuData::MediaType, |
81 blink::WebContextMenuData::MediaTypeLast) | 81 blink::WebContextMenuData::MediaTypeLast) |
82 IPC_ENUM_TRAITS_MAX_VALUE(blink::WebContextMenuData::InputFieldType, | 82 IPC_ENUM_TRAITS_MAX_VALUE(blink::WebContextMenuData::InputFieldType, |
83 blink::WebContextMenuData::InputFieldTypeLast) | 83 blink::WebContextMenuData::InputFieldTypeLast) |
84 IPC_ENUM_TRAITS_MAX_VALUE(blink::WebFocusType, blink::WebFocusTypeLast) | |
85 IPC_ENUM_TRAITS_MAX_VALUE(blink::WebFrameOwnerProperties::ScrollingMode, | 84 IPC_ENUM_TRAITS_MAX_VALUE(blink::WebFrameOwnerProperties::ScrollingMode, |
86 blink::WebFrameOwnerProperties::ScrollingMode::Last) | 85 blink::WebFrameOwnerProperties::ScrollingMode::Last) |
87 IPC_ENUM_TRAITS(blink::WebSandboxFlags) // Bitmask. | 86 IPC_ENUM_TRAITS(blink::WebSandboxFlags) // Bitmask. |
88 IPC_ENUM_TRAITS_MAX_VALUE(blink::WebTreeScopeType, | 87 IPC_ENUM_TRAITS_MAX_VALUE(blink::WebTreeScopeType, |
89 blink::WebTreeScopeType::Last) | 88 blink::WebTreeScopeType::Last) |
90 IPC_ENUM_TRAITS_MAX_VALUE(ui::MenuSourceType, ui::MENU_SOURCE_TYPE_LAST) | 89 IPC_ENUM_TRAITS_MAX_VALUE(ui::MenuSourceType, ui::MENU_SOURCE_TYPE_LAST) |
91 IPC_ENUM_TRAITS_MIN_MAX_VALUE(content::LoFiState, | 90 IPC_ENUM_TRAITS_MIN_MAX_VALUE(content::LoFiState, |
92 content::LOFI_UNSPECIFIED, | 91 content::LOFI_UNSPECIFIED, |
93 content::LOFI_ON) | 92 content::LOFI_ON) |
94 | 93 |
(...skipping 1272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1367 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, | 1366 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, |
1368 FrameHostMsg_ShowPopup_Params) | 1367 FrameHostMsg_ShowPopup_Params) |
1369 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup) | 1368 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup) |
1370 | 1369 |
1371 #endif | 1370 #endif |
1372 | 1371 |
1373 // Adding a new message? Stick to the sort order above: first platform | 1372 // Adding a new message? Stick to the sort order above: first platform |
1374 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1373 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
1375 // platform independent FrameHostMsg, then ifdefs for platform specific | 1374 // platform independent FrameHostMsg, then ifdefs for platform specific |
1376 // FrameHostMsg. | 1375 // FrameHostMsg. |
OLD | NEW |