| 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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 IPC_STRUCT_TRAITS_BEGIN(InstantSuggestion) | 123 IPC_STRUCT_TRAITS_BEGIN(InstantSuggestion) |
| 124 IPC_STRUCT_TRAITS_MEMBER(text) | 124 IPC_STRUCT_TRAITS_MEMBER(text) |
| 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) | |
| 134 IPC_STRUCT_TRAITS_MEMBER(click_url) | |
| 135 IPC_STRUCT_TRAITS_END() | 133 IPC_STRUCT_TRAITS_END() |
| 136 | 134 |
| 137 IPC_STRUCT_TRAITS_BEGIN(RendererContentSettingRules) | 135 IPC_STRUCT_TRAITS_BEGIN(RendererContentSettingRules) |
| 138 IPC_STRUCT_TRAITS_MEMBER(image_rules) | 136 IPC_STRUCT_TRAITS_MEMBER(image_rules) |
| 139 IPC_STRUCT_TRAITS_MEMBER(script_rules) | 137 IPC_STRUCT_TRAITS_MEMBER(script_rules) |
| 140 IPC_STRUCT_TRAITS_MEMBER(autoplay_rules) | 138 IPC_STRUCT_TRAITS_MEMBER(autoplay_rules) |
| 141 IPC_STRUCT_TRAITS_END() | 139 IPC_STRUCT_TRAITS_END() |
| 142 | 140 |
| 143 IPC_STRUCT_TRAITS_BEGIN(RGBAColor) | 141 IPC_STRUCT_TRAITS_BEGIN(RGBAColor) |
| 144 IPC_STRUCT_TRAITS_MEMBER(r) | 142 IPC_STRUCT_TRAITS_MEMBER(r) |
| (...skipping 449 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 594 | 592 |
| 595 #if BUILDFLAG(ENABLE_PLUGINS) | 593 #if BUILDFLAG(ENABLE_PLUGINS) |
| 596 // Sent by the renderer to check if crash reporting is enabled. | 594 // Sent by the renderer to check if crash reporting is enabled. |
| 597 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, | 595 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, |
| 598 bool /* enabled */) | 596 bool /* enabled */) |
| 599 #endif | 597 #endif |
| 600 | 598 |
| 601 // Sent by the renderer to indicate that a fields trial has been activated. | 599 // Sent by the renderer to indicate that a fields trial has been activated. |
| 602 IPC_MESSAGE_CONTROL1(ChromeViewHostMsg_FieldTrialActivated, | 600 IPC_MESSAGE_CONTROL1(ChromeViewHostMsg_FieldTrialActivated, |
| 603 std::string /* name */) | 601 std::string /* name */) |
| OLD | NEW |