OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 // Multiply-included file, no traditional include guard. | 5 // Multiply-included file, no traditional include guard. |
6 #include <map> | 6 #include <map> |
7 #include <set> | 7 #include <set> |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
128 IPC_ENUM_TRAITS(WebKit::WebConsoleMessage::Level) | 128 IPC_ENUM_TRAITS(WebKit::WebConsoleMessage::Level) |
129 IPC_ENUM_TRAITS(content::TopControlsState) | 129 IPC_ENUM_TRAITS(content::TopControlsState) |
130 | 130 |
131 IPC_STRUCT_TRAITS_BEGIN(ChromeViewHostMsg_GetPluginInfo_Status) | 131 IPC_STRUCT_TRAITS_BEGIN(ChromeViewHostMsg_GetPluginInfo_Status) |
132 IPC_STRUCT_TRAITS_MEMBER(value) | 132 IPC_STRUCT_TRAITS_MEMBER(value) |
133 IPC_STRUCT_TRAITS_END() | 133 IPC_STRUCT_TRAITS_END() |
134 | 134 |
135 // Output parameters for ChromeViewHostMsg_GetPluginInfo message. | 135 // Output parameters for ChromeViewHostMsg_GetPluginInfo message. |
136 IPC_STRUCT_BEGIN(ChromeViewHostMsg_GetPluginInfo_Output) | 136 IPC_STRUCT_BEGIN(ChromeViewHostMsg_GetPluginInfo_Output) |
137 IPC_STRUCT_MEMBER(ChromeViewHostMsg_GetPluginInfo_Status, status) | 137 IPC_STRUCT_MEMBER(ChromeViewHostMsg_GetPluginInfo_Status, status) |
138 IPC_STRUCT_MEMBER(webkit::WebPluginInfo, plugin) | 138 IPC_STRUCT_MEMBER(content::WebPluginInfo, plugin) |
139 IPC_STRUCT_MEMBER(std::string, actual_mime_type) | 139 IPC_STRUCT_MEMBER(std::string, actual_mime_type) |
140 IPC_STRUCT_MEMBER(std::string, group_identifier) | 140 IPC_STRUCT_MEMBER(std::string, group_identifier) |
141 IPC_STRUCT_MEMBER(string16, group_name) | 141 IPC_STRUCT_MEMBER(string16, group_name) |
142 IPC_STRUCT_END() | 142 IPC_STRUCT_END() |
143 | 143 |
144 IPC_STRUCT_TRAITS_BEGIN(ContentSettingsPattern::PatternParts) | 144 IPC_STRUCT_TRAITS_BEGIN(ContentSettingsPattern::PatternParts) |
145 IPC_STRUCT_TRAITS_MEMBER(scheme) | 145 IPC_STRUCT_TRAITS_MEMBER(scheme) |
146 IPC_STRUCT_TRAITS_MEMBER(is_scheme_wildcard) | 146 IPC_STRUCT_TRAITS_MEMBER(is_scheme_wildcard) |
147 IPC_STRUCT_TRAITS_MEMBER(host) | 147 IPC_STRUCT_TRAITS_MEMBER(host) |
148 IPC_STRUCT_TRAITS_MEMBER(has_domain_wildcard) | 148 IPC_STRUCT_TRAITS_MEMBER(has_domain_wildcard) |
(...skipping 527 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
676 | 676 |
677 // Tells InstantExtended to undo one most visited item deletion. | 677 // Tells InstantExtended to undo one most visited item deletion. |
678 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_SearchBoxUndoMostVisitedDeletion, | 678 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_SearchBoxUndoMostVisitedDeletion, |
679 int /* page_id */, | 679 int /* page_id */, |
680 GURL /* url */) | 680 GURL /* url */) |
681 | 681 |
682 // Tells InstantExtended whether the page supports voice search. | 682 // Tells InstantExtended whether the page supports voice search. |
683 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_SetVoiceSearchSupported, | 683 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_SetVoiceSearchSupported, |
684 int /* page_id */, | 684 int /* page_id */, |
685 bool /* supported */) | 685 bool /* supported */) |
OLD | NEW |