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

Unified Diff: chrome/browser/ui/sync/profile_signin_confirmation_helper_unittest.cc

Issue 2459823002: [Sync] Rename syncable_prefs to sync_preferences. (Closed)
Patch Set: 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/sync/profile_signin_confirmation_helper_unittest.cc
diff --git a/chrome/browser/ui/sync/profile_signin_confirmation_helper_unittest.cc b/chrome/browser/ui/sync/profile_signin_confirmation_helper_unittest.cc
index 1fc48d9ae22a2ea16459c06ce4515a92407ae6e2..895fa7b4d312a8c4d2834d208efefbca1c14f52d 100644
--- a/chrome/browser/ui/sync/profile_signin_confirmation_helper_unittest.cc
+++ b/chrome/browser/ui/sync/profile_signin_confirmation_helper_unittest.cc
@@ -30,7 +30,7 @@
#include "components/prefs/pref_notifier_impl.h"
#include "components/prefs/pref_service.h"
#include "components/prefs/testing_pref_service.h"
-#include "components/syncable_prefs/testing_pref_service_syncable.h"
+#include "components/sync_preferences/testing_pref_service_syncable.h"
#include "content/public/test/test_browser_thread_bundle.h"
#include "content/public/test/test_utils.h"
#include "testing/gmock/include/gmock/gmock.h"
@@ -133,13 +133,13 @@ class ProfileSigninConfirmationHelperTest : public testing::Test {
// Create the profile.
TestingProfile::Builder builder;
user_prefs_ = new TestingPrefStoreWithCustomReadError;
- syncable_prefs::TestingPrefServiceSyncable* pref_service =
- new syncable_prefs::TestingPrefServiceSyncable(
+ sync_preferences::TestingPrefServiceSyncable* pref_service =
+ new sync_preferences::TestingPrefServiceSyncable(
new TestingPrefStore(), user_prefs_, new TestingPrefStore(),
new user_prefs::PrefRegistrySyncable(), new PrefNotifierImpl());
chrome::RegisterUserProfilePrefs(pref_service->registry());
builder.SetPrefService(
- base::WrapUnique<syncable_prefs::PrefServiceSyncable>(pref_service));
+ base::WrapUnique<sync_preferences::PrefServiceSyncable>(pref_service));
profile_ = builder.Build();
// Initialize the services we check.

Powered by Google App Engine
This is Rietveld 408576698