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 <stdint.h> | 6 #include <stdint.h> |
7 #include <map> | 7 #include <map> |
8 #include <set> | 8 #include <set> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 IPC_STRUCT_TRAITS_MEMBER(value) | 93 IPC_STRUCT_TRAITS_MEMBER(value) |
94 IPC_STRUCT_TRAITS_END() | 94 IPC_STRUCT_TRAITS_END() |
95 | 95 |
96 // Output parameters for ChromeViewHostMsg_GetPluginInfo message. | 96 // Output parameters for ChromeViewHostMsg_GetPluginInfo message. |
97 IPC_STRUCT_BEGIN(ChromeViewHostMsg_GetPluginInfo_Output) | 97 IPC_STRUCT_BEGIN(ChromeViewHostMsg_GetPluginInfo_Output) |
98 IPC_STRUCT_MEMBER(ChromeViewHostMsg_GetPluginInfo_Status, status) | 98 IPC_STRUCT_MEMBER(ChromeViewHostMsg_GetPluginInfo_Status, status) |
99 IPC_STRUCT_MEMBER(content::WebPluginInfo, plugin) | 99 IPC_STRUCT_MEMBER(content::WebPluginInfo, plugin) |
100 IPC_STRUCT_MEMBER(std::string, actual_mime_type) | 100 IPC_STRUCT_MEMBER(std::string, actual_mime_type) |
101 IPC_STRUCT_MEMBER(std::string, group_identifier) | 101 IPC_STRUCT_MEMBER(std::string, group_identifier) |
102 IPC_STRUCT_MEMBER(base::string16, group_name) | 102 IPC_STRUCT_MEMBER(base::string16, group_name) |
| 103 IPC_STRUCT_MEMBER(int, instance_id) |
103 IPC_STRUCT_END() | 104 IPC_STRUCT_END() |
104 | 105 |
105 IPC_STRUCT_TRAITS_BEGIN(ContentSettingsPattern::PatternParts) | 106 IPC_STRUCT_TRAITS_BEGIN(ContentSettingsPattern::PatternParts) |
106 IPC_STRUCT_TRAITS_MEMBER(scheme) | 107 IPC_STRUCT_TRAITS_MEMBER(scheme) |
107 IPC_STRUCT_TRAITS_MEMBER(is_scheme_wildcard) | 108 IPC_STRUCT_TRAITS_MEMBER(is_scheme_wildcard) |
108 IPC_STRUCT_TRAITS_MEMBER(host) | 109 IPC_STRUCT_TRAITS_MEMBER(host) |
109 IPC_STRUCT_TRAITS_MEMBER(has_domain_wildcard) | 110 IPC_STRUCT_TRAITS_MEMBER(has_domain_wildcard) |
110 IPC_STRUCT_TRAITS_MEMBER(port) | 111 IPC_STRUCT_TRAITS_MEMBER(port) |
111 IPC_STRUCT_TRAITS_MEMBER(is_port_wildcard) | 112 IPC_STRUCT_TRAITS_MEMBER(is_port_wildcard) |
112 IPC_STRUCT_TRAITS_MEMBER(path) | 113 IPC_STRUCT_TRAITS_MEMBER(path) |
(...skipping 555 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
668 // process so that they can be assigned to an Instant renderer. | 669 // process so that they can be assigned to an Instant renderer. |
669 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetSearchURLs, | 670 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetSearchURLs, |
670 std::vector<GURL> /* search_urls */, | 671 std::vector<GURL> /* search_urls */, |
671 GURL /* new_tab_page_url */) | 672 GURL /* new_tab_page_url */) |
672 | 673 |
673 #if defined(ENABLE_PLUGINS) | 674 #if defined(ENABLE_PLUGINS) |
674 // Sent by the renderer to check if crash reporting is enabled. | 675 // Sent by the renderer to check if crash reporting is enabled. |
675 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, | 676 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, |
676 bool /* enabled */) | 677 bool /* enabled */) |
677 #endif | 678 #endif |
OLD | NEW |