| 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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 IPC_STRUCT_TRAITS_MEMBER(title) | 127 IPC_STRUCT_TRAITS_MEMBER(title) |
| 128 IPC_STRUCT_TRAITS_MEMBER(thumbnail) | 128 IPC_STRUCT_TRAITS_MEMBER(thumbnail) |
| 129 IPC_STRUCT_TRAITS_MEMBER(favicon) | 129 IPC_STRUCT_TRAITS_MEMBER(favicon) |
| 130 IPC_STRUCT_TRAITS_MEMBER(impression_url) | 130 IPC_STRUCT_TRAITS_MEMBER(impression_url) |
| 131 IPC_STRUCT_TRAITS_MEMBER(click_url) | 131 IPC_STRUCT_TRAITS_MEMBER(click_url) |
| 132 IPC_STRUCT_TRAITS_END() | 132 IPC_STRUCT_TRAITS_END() |
| 133 | 133 |
| 134 IPC_STRUCT_TRAITS_BEGIN(RendererContentSettingRules) | 134 IPC_STRUCT_TRAITS_BEGIN(RendererContentSettingRules) |
| 135 IPC_STRUCT_TRAITS_MEMBER(image_rules) | 135 IPC_STRUCT_TRAITS_MEMBER(image_rules) |
| 136 IPC_STRUCT_TRAITS_MEMBER(script_rules) | 136 IPC_STRUCT_TRAITS_MEMBER(script_rules) |
| 137 IPC_STRUCT_TRAITS_MEMBER(autoplay_rules) |
| 137 IPC_STRUCT_TRAITS_END() | 138 IPC_STRUCT_TRAITS_END() |
| 138 | 139 |
| 139 IPC_STRUCT_TRAITS_BEGIN(RGBAColor) | 140 IPC_STRUCT_TRAITS_BEGIN(RGBAColor) |
| 140 IPC_STRUCT_TRAITS_MEMBER(r) | 141 IPC_STRUCT_TRAITS_MEMBER(r) |
| 141 IPC_STRUCT_TRAITS_MEMBER(g) | 142 IPC_STRUCT_TRAITS_MEMBER(g) |
| 142 IPC_STRUCT_TRAITS_MEMBER(b) | 143 IPC_STRUCT_TRAITS_MEMBER(b) |
| 143 IPC_STRUCT_TRAITS_MEMBER(a) | 144 IPC_STRUCT_TRAITS_MEMBER(a) |
| 144 IPC_STRUCT_TRAITS_END() | 145 IPC_STRUCT_TRAITS_END() |
| 145 | 146 |
| 146 IPC_STRUCT_TRAITS_BEGIN(ThemeBackgroundInfo) | 147 IPC_STRUCT_TRAITS_BEGIN(ThemeBackgroundInfo) |
| (...skipping 427 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 574 | 575 |
| 575 // Record a sample string to a Rappor metric. | 576 // Record a sample string to a Rappor metric. |
| 576 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRappor, | 577 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRappor, |
| 577 std::string /* metric */, | 578 std::string /* metric */, |
| 578 std::string /* sample */) | 579 std::string /* sample */) |
| 579 | 580 |
| 580 // Record a domain and registry of a url to a Rappor metric. | 581 // Record a domain and registry of a url to a Rappor metric. |
| 581 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRapporURL, | 582 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRapporURL, |
| 582 std::string /* metric */, | 583 std::string /* metric */, |
| 583 GURL /* sample url */) | 584 GURL /* sample url */) |
| OLD | NEW |