| 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 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 IPC_STRUCT_TRAITS_BEGIN(InstantSuggestion) | 130 IPC_STRUCT_TRAITS_BEGIN(InstantSuggestion) |
| 131 IPC_STRUCT_TRAITS_MEMBER(text) | 131 IPC_STRUCT_TRAITS_MEMBER(text) |
| 132 IPC_STRUCT_TRAITS_MEMBER(metadata) | 132 IPC_STRUCT_TRAITS_MEMBER(metadata) |
| 133 IPC_STRUCT_TRAITS_END() | 133 IPC_STRUCT_TRAITS_END() |
| 134 | 134 |
| 135 IPC_STRUCT_TRAITS_BEGIN(InstantMostVisitedItem) | 135 IPC_STRUCT_TRAITS_BEGIN(InstantMostVisitedItem) |
| 136 IPC_STRUCT_TRAITS_MEMBER(url) | 136 IPC_STRUCT_TRAITS_MEMBER(url) |
| 137 IPC_STRUCT_TRAITS_MEMBER(title) | 137 IPC_STRUCT_TRAITS_MEMBER(title) |
| 138 IPC_STRUCT_TRAITS_MEMBER(thumbnail) | 138 IPC_STRUCT_TRAITS_MEMBER(thumbnail) |
| 139 IPC_STRUCT_TRAITS_MEMBER(favicon) | 139 IPC_STRUCT_TRAITS_MEMBER(favicon) |
| 140 IPC_STRUCT_TRAITS_MEMBER(source) |
| 140 IPC_STRUCT_TRAITS_END() | 141 IPC_STRUCT_TRAITS_END() |
| 141 | 142 |
| 142 IPC_STRUCT_TRAITS_BEGIN(RendererContentSettingRules) | 143 IPC_STRUCT_TRAITS_BEGIN(RendererContentSettingRules) |
| 143 IPC_STRUCT_TRAITS_MEMBER(image_rules) | 144 IPC_STRUCT_TRAITS_MEMBER(image_rules) |
| 144 IPC_STRUCT_TRAITS_MEMBER(script_rules) | 145 IPC_STRUCT_TRAITS_MEMBER(script_rules) |
| 145 IPC_STRUCT_TRAITS_MEMBER(autoplay_rules) | 146 IPC_STRUCT_TRAITS_MEMBER(autoplay_rules) |
| 146 IPC_STRUCT_TRAITS_END() | 147 IPC_STRUCT_TRAITS_END() |
| 147 | 148 |
| 148 IPC_STRUCT_TRAITS_BEGIN(RGBAColor) | 149 IPC_STRUCT_TRAITS_BEGIN(RGBAColor) |
| 149 IPC_STRUCT_TRAITS_MEMBER(r) | 150 IPC_STRUCT_TRAITS_MEMBER(r) |
| (...skipping 442 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 592 // process so that they can be assigned to an Instant renderer. | 593 // process so that they can be assigned to an Instant renderer. |
| 593 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetSearchURLs, | 594 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetSearchURLs, |
| 594 std::vector<GURL> /* search_urls */, | 595 std::vector<GURL> /* search_urls */, |
| 595 GURL /* new_tab_page_url */) | 596 GURL /* new_tab_page_url */) |
| 596 | 597 |
| 597 #if BUILDFLAG(ENABLE_PLUGINS) | 598 #if BUILDFLAG(ENABLE_PLUGINS) |
| 598 // Sent by the renderer to check if crash reporting is enabled. | 599 // Sent by the renderer to check if crash reporting is enabled. |
| 599 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, | 600 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, |
| 600 bool /* enabled */) | 601 bool /* enabled */) |
| 601 #endif | 602 #endif |
| OLD | NEW |