| 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 // Keep this file in sync with the .proto files in this directory. | |
| 6 | |
| 7 #include "components/sync/protocol/proto_value_conversions.h" | 5 #include "components/sync/protocol/proto_value_conversions.h" |
| 8 | 6 |
| 9 #include <stdint.h> | 7 #include <stdint.h> |
| 10 | 8 |
| 11 #include <algorithm> | 9 #include <algorithm> |
| 12 #include <string> | 10 #include <string> |
| 13 | 11 |
| 14 #include "base/base64.h" | 12 #include "base/base64.h" |
| 15 #include "base/i18n/time_formatting.h" | 13 #include "base/i18n/time_formatting.h" |
| 16 #include "base/logging.h" | 14 #include "base/logging.h" |
| (...skipping 1142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1159 #undef SET_BYTES | 1157 #undef SET_BYTES |
| 1160 #undef SET_INT32 | 1158 #undef SET_INT32 |
| 1161 #undef SET_INT64 | 1159 #undef SET_INT64 |
| 1162 #undef SET_INT64_REP | 1160 #undef SET_INT64_REP |
| 1163 #undef SET_STR | 1161 #undef SET_STR |
| 1164 #undef SET_STR_REP | 1162 #undef SET_STR_REP |
| 1165 | 1163 |
| 1166 #undef SET_FIELD | 1164 #undef SET_FIELD |
| 1167 | 1165 |
| 1168 } // namespace syncer | 1166 } // namespace syncer |
| OLD | NEW |