| 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/core/change_record.h" | 5 #include "components/sync/syncable/change_record.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 #include <utility> | 10 #include <utility> |
| 11 | 11 |
| 12 #include "base/strings/string_number_conversions.h" | 12 #include "base/strings/string_number_conversions.h" |
| 13 #include "base/test/values_test_util.h" | 13 #include "base/test/values_test_util.h" |
| 14 #include "base/values.h" | 14 #include "base/values.h" |
| 15 #include "components/sync/protocol/extension_specifics.pb.h" | 15 #include "components/sync/protocol/extension_specifics.pb.h" |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 extra->set_expected_to_value_calls(2U); | 151 extra->set_expected_to_value_calls(2U); |
| 152 | 152 |
| 153 record.extra.reset(extra.release()); | 153 record.extra.reset(extra.release()); |
| 154 std::unique_ptr<base::DictionaryValue> value(record.ToValue()); | 154 std::unique_ptr<base::DictionaryValue> value(record.ToValue()); |
| 155 CheckChangeRecordValue(record, *value); | 155 CheckChangeRecordValue(record, *value); |
| 156 } | 156 } |
| 157 } | 157 } |
| 158 | 158 |
| 159 } // namespace | 159 } // namespace |
| 160 } // namespace syncer | 160 } // namespace syncer |
| OLD | NEW |