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 <string> | 7 #include <string> |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
125 IPC_STRUCT_TRAITS_MEMBER(metadata) | 125 IPC_STRUCT_TRAITS_MEMBER(metadata) |
126 IPC_STRUCT_TRAITS_END() | 126 IPC_STRUCT_TRAITS_END() |
127 | 127 |
128 IPC_STRUCT_TRAITS_BEGIN(InstantMostVisitedItem) | 128 IPC_STRUCT_TRAITS_BEGIN(InstantMostVisitedItem) |
129 IPC_STRUCT_TRAITS_MEMBER(url) | 129 IPC_STRUCT_TRAITS_MEMBER(url) |
130 IPC_STRUCT_TRAITS_MEMBER(title) | 130 IPC_STRUCT_TRAITS_MEMBER(title) |
131 IPC_STRUCT_TRAITS_MEMBER(thumbnail) | 131 IPC_STRUCT_TRAITS_MEMBER(thumbnail) |
132 IPC_STRUCT_TRAITS_MEMBER(favicon) | 132 IPC_STRUCT_TRAITS_MEMBER(favicon) |
133 IPC_STRUCT_TRAITS_MEMBER(impression_url) | 133 IPC_STRUCT_TRAITS_MEMBER(impression_url) |
134 IPC_STRUCT_TRAITS_MEMBER(click_url) | 134 IPC_STRUCT_TRAITS_MEMBER(click_url) |
| 135 IPC_STRUCT_TRAITS_MEMBER(is_server_side_suggestion) |
135 IPC_STRUCT_TRAITS_END() | 136 IPC_STRUCT_TRAITS_END() |
136 | 137 |
137 IPC_STRUCT_TRAITS_BEGIN(RendererContentSettingRules) | 138 IPC_STRUCT_TRAITS_BEGIN(RendererContentSettingRules) |
138 IPC_STRUCT_TRAITS_MEMBER(image_rules) | 139 IPC_STRUCT_TRAITS_MEMBER(image_rules) |
139 IPC_STRUCT_TRAITS_MEMBER(script_rules) | 140 IPC_STRUCT_TRAITS_MEMBER(script_rules) |
140 IPC_STRUCT_TRAITS_MEMBER(autoplay_rules) | 141 IPC_STRUCT_TRAITS_MEMBER(autoplay_rules) |
141 IPC_STRUCT_TRAITS_END() | 142 IPC_STRUCT_TRAITS_END() |
142 | 143 |
143 IPC_STRUCT_TRAITS_BEGIN(RGBAColor) | 144 IPC_STRUCT_TRAITS_BEGIN(RGBAColor) |
144 IPC_STRUCT_TRAITS_MEMBER(r) | 145 IPC_STRUCT_TRAITS_MEMBER(r) |
(...skipping 449 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
594 | 595 |
595 #if BUILDFLAG(ENABLE_PLUGINS) | 596 #if BUILDFLAG(ENABLE_PLUGINS) |
596 // Sent by the renderer to check if crash reporting is enabled. | 597 // Sent by the renderer to check if crash reporting is enabled. |
597 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, | 598 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, |
598 bool /* enabled */) | 599 bool /* enabled */) |
599 #endif | 600 #endif |
600 | 601 |
601 // Sent by the renderer to indicate that a fields trial has been activated. | 602 // Sent by the renderer to indicate that a fields trial has been activated. |
602 IPC_MESSAGE_CONTROL1(ChromeViewHostMsg_FieldTrialActivated, | 603 IPC_MESSAGE_CONTROL1(ChromeViewHostMsg_FieldTrialActivated, |
603 std::string /* name */) | 604 std::string /* name */) |
OLD | NEW |