| 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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 IPC_STRUCT_TRAITS_END() | 113 IPC_STRUCT_TRAITS_END() |
| 114 | 114 |
| 115 IPC_STRUCT_TRAITS_BEGIN(InstantSuggestion) | 115 IPC_STRUCT_TRAITS_BEGIN(InstantSuggestion) |
| 116 IPC_STRUCT_TRAITS_MEMBER(text) | 116 IPC_STRUCT_TRAITS_MEMBER(text) |
| 117 IPC_STRUCT_TRAITS_MEMBER(metadata) | 117 IPC_STRUCT_TRAITS_MEMBER(metadata) |
| 118 IPC_STRUCT_TRAITS_END() | 118 IPC_STRUCT_TRAITS_END() |
| 119 | 119 |
| 120 IPC_STRUCT_TRAITS_BEGIN(InstantMostVisitedItem) | 120 IPC_STRUCT_TRAITS_BEGIN(InstantMostVisitedItem) |
| 121 IPC_STRUCT_TRAITS_MEMBER(url) | 121 IPC_STRUCT_TRAITS_MEMBER(url) |
| 122 IPC_STRUCT_TRAITS_MEMBER(title) | 122 IPC_STRUCT_TRAITS_MEMBER(title) |
| 123 IPC_STRUCT_TRAITS_MEMBER(thumbnail) |
| 124 IPC_STRUCT_TRAITS_MEMBER(favicon) |
| 123 IPC_STRUCT_TRAITS_END() | 125 IPC_STRUCT_TRAITS_END() |
| 124 | 126 |
| 125 IPC_STRUCT_TRAITS_BEGIN(RendererContentSettingRules) | 127 IPC_STRUCT_TRAITS_BEGIN(RendererContentSettingRules) |
| 126 IPC_STRUCT_TRAITS_MEMBER(image_rules) | 128 IPC_STRUCT_TRAITS_MEMBER(image_rules) |
| 127 IPC_STRUCT_TRAITS_MEMBER(script_rules) | 129 IPC_STRUCT_TRAITS_MEMBER(script_rules) |
| 128 IPC_STRUCT_TRAITS_END() | 130 IPC_STRUCT_TRAITS_END() |
| 129 | 131 |
| 130 IPC_STRUCT_TRAITS_BEGIN(RGBAColor) | 132 IPC_STRUCT_TRAITS_BEGIN(RGBAColor) |
| 131 IPC_STRUCT_TRAITS_MEMBER(r) | 133 IPC_STRUCT_TRAITS_MEMBER(r) |
| 132 IPC_STRUCT_TRAITS_MEMBER(g) | 134 IPC_STRUCT_TRAITS_MEMBER(g) |
| (...skipping 453 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 586 | 588 |
| 587 // Record a sample string to a Rappor metric. | 589 // Record a sample string to a Rappor metric. |
| 588 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRappor, | 590 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRappor, |
| 589 std::string /* metric */, | 591 std::string /* metric */, |
| 590 std::string /* sample */) | 592 std::string /* sample */) |
| 591 | 593 |
| 592 // Record a domain and registry of a url to a Rappor metric. | 594 // Record a domain and registry of a url to a Rappor metric. |
| 593 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRapporURL, | 595 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRapporURL, |
| 594 std::string /* metric */, | 596 std::string /* metric */, |
| 595 GURL /* sample url */) | 597 GURL /* sample url */) |
| OLD | NEW |