| 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 #include "components/sync/protocol/proto_value_conversions.h" | 5 #include "components/sync/protocol/proto_value_conversions.h" |
| 6 | 6 |
| 7 #include <stdint.h> | 7 #include <stdint.h> |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 #include <utility> |
| 10 | 11 |
| 11 #include "base/base64.h" | 12 #include "base/base64.h" |
| 12 #include "base/memory/ptr_util.h" | 13 #include "base/memory/ptr_util.h" |
| 13 #include "base/strings/string_number_conversions.h" | 14 #include "base/strings/string_number_conversions.h" |
| 14 #include "base/values.h" | 15 #include "base/values.h" |
| 15 #include "components/sync/base/unique_position.h" | 16 #include "components/sync/base/unique_position.h" |
| 16 #include "components/sync/protocol/proto_visitors.h" | 17 #include "components/sync/protocol/proto_visitors.h" |
| 17 | 18 |
| 18 namespace syncer { | 19 namespace syncer { |
| 19 | 20 |
| (...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 352 IMPLEMENT_PROTO_TO_VALUE(WifiCredentialSpecifics) | 353 IMPLEMENT_PROTO_TO_VALUE(WifiCredentialSpecifics) |
| 353 | 354 |
| 354 IMPLEMENT_PROTO_TO_VALUE_INCLUDE_SPECIFICS(ClientToServerMessage) | 355 IMPLEMENT_PROTO_TO_VALUE_INCLUDE_SPECIFICS(ClientToServerMessage) |
| 355 IMPLEMENT_PROTO_TO_VALUE_INCLUDE_SPECIFICS(ClientToServerResponse) | 356 IMPLEMENT_PROTO_TO_VALUE_INCLUDE_SPECIFICS(ClientToServerResponse) |
| 356 IMPLEMENT_PROTO_TO_VALUE_INCLUDE_SPECIFICS(SyncEntity) | 357 IMPLEMENT_PROTO_TO_VALUE_INCLUDE_SPECIFICS(SyncEntity) |
| 357 | 358 |
| 358 #undef IMPLEMENT_PROTO_TO_VALUE | 359 #undef IMPLEMENT_PROTO_TO_VALUE |
| 359 #undef IMPLEMENT_PROTO_TO_VALUE_INCLUDE_SPECIFICS | 360 #undef IMPLEMENT_PROTO_TO_VALUE_INCLUDE_SPECIFICS |
| 360 | 361 |
| 361 } // namespace syncer | 362 } // namespace syncer |
| OLD | NEW |