| Index: chrome/browser/chromeos/file_system_provider/registry_unittest.cc
|
| diff --git a/chrome/browser/chromeos/file_system_provider/registry_unittest.cc b/chrome/browser/chromeos/file_system_provider/registry_unittest.cc
|
| index f37766d19241badf7b004159aad1e109da88561d..ef5c1e0fe3ef9e7c5a9c8aa02c3ebb43c3b838a3 100644
|
| --- a/chrome/browser/chromeos/file_system_provider/registry_unittest.cc
|
| +++ b/chrome/browser/chromeos/file_system_provider/registry_unittest.cc
|
| @@ -15,7 +15,7 @@
|
| #include "chrome/test/base/testing_browser_process.h"
|
| #include "chrome/test/base/testing_profile.h"
|
| #include "chrome/test/base/testing_profile_manager.h"
|
| -#include "components/syncable_prefs/testing_pref_service_syncable.h"
|
| +#include "components/sync_preferences/testing_pref_service_syncable.h"
|
| #include "components/user_prefs/user_prefs.h"
|
| #include "content/public/test/test_browser_thread_bundle.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| @@ -50,7 +50,7 @@ void RememberFakeFileSystem(TestingProfile* profile,
|
| const Watcher& watcher) {
|
| // Warning. Updating this code means that backward compatibility may be
|
| // broken, what is unexpected and should be avoided.
|
| - syncable_prefs::TestingPrefServiceSyncable* const pref_service =
|
| + sync_preferences::TestingPrefServiceSyncable* const pref_service =
|
| profile->GetTestingPrefService();
|
| ASSERT_TRUE(pref_service);
|
|
|
| @@ -167,7 +167,7 @@ TEST_F(FileSystemProviderRegistryTest, RememberFileSystem) {
|
|
|
| registry_->RememberFileSystem(file_system_info, watchers);
|
|
|
| - syncable_prefs::TestingPrefServiceSyncable* const pref_service =
|
| + sync_preferences::TestingPrefServiceSyncable* const pref_service =
|
| profile_->GetTestingPrefService();
|
| ASSERT_TRUE(pref_service);
|
|
|
| @@ -255,7 +255,7 @@ TEST_F(FileSystemProviderRegistryTest, ForgetFileSystem) {
|
|
|
| registry_->ForgetFileSystem(kExtensionId, kFileSystemId);
|
|
|
| - syncable_prefs::TestingPrefServiceSyncable* const pref_service =
|
| + sync_preferences::TestingPrefServiceSyncable* const pref_service =
|
| profile_->GetTestingPrefService();
|
| ASSERT_TRUE(pref_service);
|
|
|
| @@ -286,7 +286,7 @@ TEST_F(FileSystemProviderRegistryTest, UpdateWatcherTag) {
|
| fake_watcher_.last_tag = "updated-tag";
|
| registry_->UpdateWatcherTag(file_system_info, fake_watcher_);
|
|
|
| - syncable_prefs::TestingPrefServiceSyncable* const pref_service =
|
| + sync_preferences::TestingPrefServiceSyncable* const pref_service =
|
| profile_->GetTestingPrefService();
|
| ASSERT_TRUE(pref_service);
|
|
|
|
|