| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/model_impl/processor_entity_tracker.h" | 5 #include "components/sync/model_impl/processor_entity_tracker.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "base/memory/ptr_util.h" | 9 #include "base/memory/ptr_util.h" |
| 10 #include "components/sync/base/model_type.h" | 10 #include "components/sync/base/model_type.h" |
| 11 #include "components/sync/base/time.h" | 11 #include "components/sync/base/time.h" |
| 12 #include "components/sync/engine/non_blocking_sync_common.h" | 12 #include "components/sync/engine/non_blocking_sync_common.h" |
| 13 #include "components/sync/protocol/sync.pb.h" | 13 #include "components/sync/protocol/sync.pb.h" |
| 14 #include "components/sync/syncable/syncable_util.h" | |
| 15 #include "testing/gtest/include/gtest/gtest.h" | 14 #include "testing/gtest/include/gtest/gtest.h" |
| 16 | 15 |
| 17 namespace syncer { | 16 namespace syncer { |
| 18 | 17 |
| 19 namespace { | 18 namespace { |
| 20 | 19 |
| 21 const char kKey[] = "key"; | 20 const char kKey[] = "key"; |
| 22 const char kHash[] = "hash"; | 21 const char kHash[] = "hash"; |
| 23 const char kId[] = "id"; | 22 const char kId[] = "id"; |
| 24 const char kName[] = "name"; | 23 const char kName[] = "name"; |
| (...skipping 450 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 475 EXPECT_EQ("", entity->metadata().base_specifics_hash()); | 474 EXPECT_EQ("", entity->metadata().base_specifics_hash()); |
| 476 | 475 |
| 477 EXPECT_FALSE(entity->IsUnsynced()); | 476 EXPECT_FALSE(entity->IsUnsynced()); |
| 478 EXPECT_FALSE(entity->RequiresCommitRequest()); | 477 EXPECT_FALSE(entity->RequiresCommitRequest()); |
| 479 EXPECT_FALSE(entity->RequiresCommitData()); | 478 EXPECT_FALSE(entity->RequiresCommitData()); |
| 480 EXPECT_FALSE(entity->CanClearMetadata()); | 479 EXPECT_FALSE(entity->CanClearMetadata()); |
| 481 EXPECT_FALSE(entity->HasCommitData()); | 480 EXPECT_FALSE(entity->HasCommitData()); |
| 482 } | 481 } |
| 483 | 482 |
| 484 } // namespace syncer | 483 } // namespace syncer |
| OLD | NEW |