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

Unified Diff: components/sync/model/fake_model_type_sync_bridge.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/model/DEPS ('k') | components/sync/model_impl/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/sync/model/fake_model_type_sync_bridge.cc
diff --git a/components/sync/model/fake_model_type_sync_bridge.cc b/components/sync/model/fake_model_type_sync_bridge.cc
index bfce7597df474e359d277170b74ba4ad51a30637..a3c01918523f9fb89b9ffc2544e4ea397aacc089 100644
--- a/components/sync/model/fake_model_type_sync_bridge.cc
+++ b/components/sync/model/fake_model_type_sync_bridge.cc
@@ -8,9 +8,9 @@
#include "base/bind.h"
#include "base/memory/ptr_util.h"
+#include "components/sync/base/hash_util.h"
#include "components/sync/model/mutable_data_batch.h"
#include "components/sync/model_impl/in_memory_metadata_change_list.h"
-#include "components/sync/syncable/syncable_util.h"
#include "testing/gtest/include/gtest/gtest.h"
using sync_pb::EntitySpecifics;
@@ -63,8 +63,8 @@ std::string FakeModelTypeSyncBridge::ClientTagFromKey(const std::string& key) {
// static
std::string FakeModelTypeSyncBridge::TagHashFromKey(const std::string& key) {
- return syncable::GenerateSyncableHash(
- PREFERENCES, FakeModelTypeSyncBridge::ClientTagFromKey(key));
+ return GenerateSyncableHash(PREFERENCES,
+ FakeModelTypeSyncBridge::ClientTagFromKey(key));
}
// static
« no previous file with comments | « components/sync/model/DEPS ('k') | components/sync/model_impl/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698