| 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 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 IPC_STRUCT_TRAITS_MEMBER(value) | 95 IPC_STRUCT_TRAITS_MEMBER(value) |
| 96 IPC_STRUCT_TRAITS_END() | 96 IPC_STRUCT_TRAITS_END() |
| 97 | 97 |
| 98 // Output parameters for ChromeViewHostMsg_GetPluginInfo message. | 98 // Output parameters for ChromeViewHostMsg_GetPluginInfo message. |
| 99 IPC_STRUCT_BEGIN(ChromeViewHostMsg_GetPluginInfo_Output) | 99 IPC_STRUCT_BEGIN(ChromeViewHostMsg_GetPluginInfo_Output) |
| 100 IPC_STRUCT_MEMBER(ChromeViewHostMsg_GetPluginInfo_Status, status) | 100 IPC_STRUCT_MEMBER(ChromeViewHostMsg_GetPluginInfo_Status, status) |
| 101 IPC_STRUCT_MEMBER(content::WebPluginInfo, plugin) | 101 IPC_STRUCT_MEMBER(content::WebPluginInfo, plugin) |
| 102 IPC_STRUCT_MEMBER(std::string, actual_mime_type) | 102 IPC_STRUCT_MEMBER(std::string, actual_mime_type) |
| 103 IPC_STRUCT_MEMBER(std::string, group_identifier) | 103 IPC_STRUCT_MEMBER(std::string, group_identifier) |
| 104 IPC_STRUCT_MEMBER(base::string16, group_name) | 104 IPC_STRUCT_MEMBER(base::string16, group_name) |
| 105 IPC_STRUCT_MEMBER(int, instance_id) |
| 105 IPC_STRUCT_END() | 106 IPC_STRUCT_END() |
| 106 | 107 |
| 107 IPC_STRUCT_TRAITS_BEGIN(ContentSettingsPattern::PatternParts) | 108 IPC_STRUCT_TRAITS_BEGIN(ContentSettingsPattern::PatternParts) |
| 108 IPC_STRUCT_TRAITS_MEMBER(scheme) | 109 IPC_STRUCT_TRAITS_MEMBER(scheme) |
| 109 IPC_STRUCT_TRAITS_MEMBER(is_scheme_wildcard) | 110 IPC_STRUCT_TRAITS_MEMBER(is_scheme_wildcard) |
| 110 IPC_STRUCT_TRAITS_MEMBER(host) | 111 IPC_STRUCT_TRAITS_MEMBER(host) |
| 111 IPC_STRUCT_TRAITS_MEMBER(has_domain_wildcard) | 112 IPC_STRUCT_TRAITS_MEMBER(has_domain_wildcard) |
| 112 IPC_STRUCT_TRAITS_MEMBER(port) | 113 IPC_STRUCT_TRAITS_MEMBER(port) |
| 113 IPC_STRUCT_TRAITS_MEMBER(is_port_wildcard) | 114 IPC_STRUCT_TRAITS_MEMBER(is_port_wildcard) |
| 114 IPC_STRUCT_TRAITS_MEMBER(path) | 115 IPC_STRUCT_TRAITS_MEMBER(path) |
| (...skipping 604 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 719 base::string16 /* source */, | 720 base::string16 /* source */, |
| 720 extensions::StackTrace /* stack trace */, | 721 extensions::StackTrace /* stack trace */, |
| 721 int32 /* severity level */) | 722 int32 /* severity level */) |
| 722 #endif | 723 #endif |
| 723 | 724 |
| 724 #if defined(ENABLE_PLUGINS) | 725 #if defined(ENABLE_PLUGINS) |
| 725 // Sent by the renderer to check if crash reporting is enabled. | 726 // Sent by the renderer to check if crash reporting is enabled. |
| 726 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, | 727 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, |
| 727 bool /* enabled */) | 728 bool /* enabled */) |
| 728 #endif | 729 #endif |
| OLD | NEW |