Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(334)

Side by Side Diff: components/sync/core/processor_entity_tracker_unittest.cc

Issue 2388973002: [Sync] Removing duplicate includes, part 2. (Closed)
Patch Set: Update for Max's comments. Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/core/processor_entity_tracker.h" 5 #include "components/sync/core/processor_entity_tracker.h"
6 6
7 #include <stdint.h>
8
9 #include <memory>
10 #include <utility> 7 #include <utility>
11 8
12 #include "base/memory/ptr_util.h" 9 #include "base/memory/ptr_util.h"
13 #include "base/time/time.h"
14 #include "components/sync/base/model_type.h" 10 #include "components/sync/base/model_type.h"
15 #include "components/sync/base/time.h" 11 #include "components/sync/base/time.h"
16 #include "components/sync/core/non_blocking_sync_common.h" 12 #include "components/sync/core/non_blocking_sync_common.h"
17 #include "components/sync/protocol/sync.pb.h" 13 #include "components/sync/protocol/sync.pb.h"
18 #include "components/sync/syncable/syncable_util.h" 14 #include "components/sync/syncable/syncable_util.h"
19 #include "testing/gtest/include/gtest/gtest.h" 15 #include "testing/gtest/include/gtest/gtest.h"
20 16
21 namespace syncer { 17 namespace syncer {
22 18
23 namespace { 19 namespace {
(...skipping 455 matching lines...) Expand 10 before | Expand all | Expand 10 after
479 EXPECT_EQ("", entity->metadata().base_specifics_hash()); 475 EXPECT_EQ("", entity->metadata().base_specifics_hash());
480 476
481 EXPECT_FALSE(entity->IsUnsynced()); 477 EXPECT_FALSE(entity->IsUnsynced());
482 EXPECT_FALSE(entity->RequiresCommitRequest()); 478 EXPECT_FALSE(entity->RequiresCommitRequest());
483 EXPECT_FALSE(entity->RequiresCommitData()); 479 EXPECT_FALSE(entity->RequiresCommitData());
484 EXPECT_FALSE(entity->CanClearMetadata()); 480 EXPECT_FALSE(entity->CanClearMetadata());
485 EXPECT_FALSE(entity->HasCommitData()); 481 EXPECT_FALSE(entity->HasCommitData());
486 } 482 }
487 483
488 } // namespace syncer 484 } // namespace syncer
OLDNEW
« no previous file with comments | « components/sync/core/http_bridge_unittest.cc ('k') | components/sync/core/shared_model_type_processor_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698