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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
128 IPC_STRUCT_TRAITS_MEMBER(metadata) | 128 IPC_STRUCT_TRAITS_MEMBER(metadata) |
129 IPC_STRUCT_TRAITS_END() | 129 IPC_STRUCT_TRAITS_END() |
130 | 130 |
131 IPC_STRUCT_TRAITS_BEGIN(InstantMostVisitedItem) | 131 IPC_STRUCT_TRAITS_BEGIN(InstantMostVisitedItem) |
132 IPC_STRUCT_TRAITS_MEMBER(url) | 132 IPC_STRUCT_TRAITS_MEMBER(url) |
133 IPC_STRUCT_TRAITS_MEMBER(title) | 133 IPC_STRUCT_TRAITS_MEMBER(title) |
134 IPC_STRUCT_TRAITS_END() | 134 IPC_STRUCT_TRAITS_END() |
135 | 135 |
136 IPC_STRUCT_TRAITS_BEGIN(RendererContentSettingRules) | 136 IPC_STRUCT_TRAITS_BEGIN(RendererContentSettingRules) |
137 IPC_STRUCT_TRAITS_MEMBER(image_rules) | 137 IPC_STRUCT_TRAITS_MEMBER(image_rules) |
| 138 IPC_STRUCT_TRAITS_MEMBER(media_rules) |
138 IPC_STRUCT_TRAITS_MEMBER(script_rules) | 139 IPC_STRUCT_TRAITS_MEMBER(script_rules) |
139 IPC_STRUCT_TRAITS_END() | 140 IPC_STRUCT_TRAITS_END() |
140 | 141 |
141 IPC_STRUCT_TRAITS_BEGIN(RGBAColor) | 142 IPC_STRUCT_TRAITS_BEGIN(RGBAColor) |
142 IPC_STRUCT_TRAITS_MEMBER(r) | 143 IPC_STRUCT_TRAITS_MEMBER(r) |
143 IPC_STRUCT_TRAITS_MEMBER(g) | 144 IPC_STRUCT_TRAITS_MEMBER(g) |
144 IPC_STRUCT_TRAITS_MEMBER(b) | 145 IPC_STRUCT_TRAITS_MEMBER(b) |
145 IPC_STRUCT_TRAITS_MEMBER(a) | 146 IPC_STRUCT_TRAITS_MEMBER(a) |
146 IPC_STRUCT_TRAITS_END() | 147 IPC_STRUCT_TRAITS_END() |
147 | 148 |
(...skipping 571 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 |