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

Unified Diff: components/sync/engine_impl/worker_entity_tracker_unittest.cc

Issue 2502253003: [Sync] Move GenerateSyncableHash to base. (Closed)
Patch Set: Keep full syncable/ DEP. Created 4 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/sync/engine_impl/uss_migrator_unittest.cc ('k') | components/sync/model/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/sync/engine_impl/worker_entity_tracker_unittest.cc
diff --git a/components/sync/engine_impl/worker_entity_tracker_unittest.cc b/components/sync/engine_impl/worker_entity_tracker_unittest.cc
index f9e5606a666885bc56ac517b45b87f9a1417f62d..03bc2b6231549b114491a9c51cbf4cf7436ce3d7 100644
--- a/components/sync/engine_impl/worker_entity_tracker_unittest.cc
+++ b/components/sync/engine_impl/worker_entity_tracker_unittest.cc
@@ -5,9 +5,9 @@
#include "components/sync/engine_impl/worker_entity_tracker.h"
+#include "components/sync/base/hash_util.h"
#include "components/sync/base/model_type.h"
#include "components/sync/base/time.h"
-#include "components/sync/syncable/syncable_util.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace syncer {
@@ -25,7 +25,7 @@ class WorkerEntityTrackerTest : public ::testing::Test {
WorkerEntityTrackerTest()
: kServerId("ServerID"),
kClientTag("some.sample.tag"),
- kClientTagHash(syncable::GenerateSyncableHash(PREFERENCES, kClientTag)),
+ kClientTagHash(GenerateSyncableHash(PREFERENCES, kClientTag)),
kSpecificsHash("somehash"),
kCtime(base::Time::UnixEpoch() + base::TimeDelta::FromDays(10)),
kMtime(base::Time::UnixEpoch() + base::TimeDelta::FromDays(20)),
« no previous file with comments | « components/sync/engine_impl/uss_migrator_unittest.cc ('k') | components/sync/model/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698