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 111 matching lines...) Loading... |
122 IPC_STRUCT_TRAITS_MEMBER(title) | 122 IPC_STRUCT_TRAITS_MEMBER(title) |
123 IPC_STRUCT_TRAITS_MEMBER(thumbnail) | 123 IPC_STRUCT_TRAITS_MEMBER(thumbnail) |
124 IPC_STRUCT_TRAITS_MEMBER(favicon) | 124 IPC_STRUCT_TRAITS_MEMBER(favicon) |
125 IPC_STRUCT_TRAITS_MEMBER(impression_url) | 125 IPC_STRUCT_TRAITS_MEMBER(impression_url) |
126 IPC_STRUCT_TRAITS_MEMBER(click_url) | 126 IPC_STRUCT_TRAITS_MEMBER(click_url) |
127 IPC_STRUCT_TRAITS_END() | 127 IPC_STRUCT_TRAITS_END() |
128 | 128 |
129 IPC_STRUCT_TRAITS_BEGIN(RendererContentSettingRules) | 129 IPC_STRUCT_TRAITS_BEGIN(RendererContentSettingRules) |
130 IPC_STRUCT_TRAITS_MEMBER(image_rules) | 130 IPC_STRUCT_TRAITS_MEMBER(image_rules) |
131 IPC_STRUCT_TRAITS_MEMBER(script_rules) | 131 IPC_STRUCT_TRAITS_MEMBER(script_rules) |
| 132 IPC_STRUCT_TRAITS_MEMBER(media_autoplay_rules) |
132 IPC_STRUCT_TRAITS_END() | 133 IPC_STRUCT_TRAITS_END() |
133 | 134 |
134 IPC_STRUCT_TRAITS_BEGIN(RGBAColor) | 135 IPC_STRUCT_TRAITS_BEGIN(RGBAColor) |
135 IPC_STRUCT_TRAITS_MEMBER(r) | 136 IPC_STRUCT_TRAITS_MEMBER(r) |
136 IPC_STRUCT_TRAITS_MEMBER(g) | 137 IPC_STRUCT_TRAITS_MEMBER(g) |
137 IPC_STRUCT_TRAITS_MEMBER(b) | 138 IPC_STRUCT_TRAITS_MEMBER(b) |
138 IPC_STRUCT_TRAITS_MEMBER(a) | 139 IPC_STRUCT_TRAITS_MEMBER(a) |
139 IPC_STRUCT_TRAITS_END() | 140 IPC_STRUCT_TRAITS_END() |
140 | 141 |
141 IPC_STRUCT_TRAITS_BEGIN(ThemeBackgroundInfo) | 142 IPC_STRUCT_TRAITS_BEGIN(ThemeBackgroundInfo) |
(...skipping 429 matching lines...) Loading... |
571 | 572 |
572 // Record a sample string to a Rappor metric. | 573 // Record a sample string to a Rappor metric. |
573 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRappor, | 574 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRappor, |
574 std::string /* metric */, | 575 std::string /* metric */, |
575 std::string /* sample */) | 576 std::string /* sample */) |
576 | 577 |
577 // Record a domain and registry of a url to a Rappor metric. | 578 // Record a domain and registry of a url to a Rappor metric. |
578 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRapporURL, | 579 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRapporURL, |
579 std::string /* metric */, | 580 std::string /* metric */, |
580 GURL /* sample url */) | 581 GURL /* sample url */) |
OLD | NEW |