| 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 <map> | 7 #include <map> |
| 8 #include <set> | 8 #include <set> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 IPC_STRUCT_TRAITS_END() | 128 IPC_STRUCT_TRAITS_END() |
| 129 | 129 |
| 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) |
| 139 IPC_STRUCT_TRAITS_MEMBER(favicon) |
| 138 IPC_STRUCT_TRAITS_END() | 140 IPC_STRUCT_TRAITS_END() |
| 139 | 141 |
| 140 IPC_STRUCT_TRAITS_BEGIN(RendererContentSettingRules) | 142 IPC_STRUCT_TRAITS_BEGIN(RendererContentSettingRules) |
| 141 IPC_STRUCT_TRAITS_MEMBER(image_rules) | 143 IPC_STRUCT_TRAITS_MEMBER(image_rules) |
| 142 IPC_STRUCT_TRAITS_MEMBER(script_rules) | 144 IPC_STRUCT_TRAITS_MEMBER(script_rules) |
| 143 IPC_STRUCT_TRAITS_END() | 145 IPC_STRUCT_TRAITS_END() |
| 144 | 146 |
| 145 IPC_STRUCT_TRAITS_BEGIN(RGBAColor) | 147 IPC_STRUCT_TRAITS_BEGIN(RGBAColor) |
| 146 IPC_STRUCT_TRAITS_MEMBER(r) | 148 IPC_STRUCT_TRAITS_MEMBER(r) |
| 147 IPC_STRUCT_TRAITS_MEMBER(g) | 149 IPC_STRUCT_TRAITS_MEMBER(g) |
| (...skipping 445 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 593 | 595 |
| 594 // Record a sample string to a Rappor metric. | 596 // Record a sample string to a Rappor metric. |
| 595 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRappor, | 597 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRappor, |
| 596 std::string /* metric */, | 598 std::string /* metric */, |
| 597 std::string /* sample */) | 599 std::string /* sample */) |
| 598 | 600 |
| 599 // Record a domain and registry of a url to a Rappor metric. | 601 // Record a domain and registry of a url to a Rappor metric. |
| 600 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRapporURL, | 602 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRapporURL, |
| 601 std::string /* metric */, | 603 std::string /* metric */, |
| 602 GURL /* sample url */) | 604 GURL /* sample url */) |
| OLD | NEW |