| 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...) Expand 10 before | Expand all | Expand 10 after 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(keygen_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 431 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 573 | 574 |
| 574 // Record a sample string to a Rappor metric. | 575 // Record a sample string to a Rappor metric. |
| 575 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRappor, | 576 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRappor, |
| 576 std::string /* metric */, | 577 std::string /* metric */, |
| 577 std::string /* sample */) | 578 std::string /* sample */) |
| 578 | 579 |
| 579 // Record a domain and registry of a url to a Rappor metric. | 580 // Record a domain and registry of a url to a Rappor metric. |
| 580 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRapporURL, | 581 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRapporURL, |
| 581 std::string /* metric */, | 582 std::string /* metric */, |
| 582 GURL /* sample url */) | 583 GURL /* sample url */) |
| OLD | NEW |