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

Unified Diff: chrome/browser/sync/chrome_sync_client.cc

Issue 2463463004: [Sync] Rename wifi_sync to sync_wifi. (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/sync/chrome_sync_client.cc
diff --git a/chrome/browser/sync/chrome_sync_client.cc b/chrome/browser/sync/chrome_sync_client.cc
index d68b8bc90cedc647755d267dda932477b4fbc0f5..17c0b50d91188b6fd2184e96b9a773f6592ec0ed 100644
--- a/chrome/browser/sync/chrome_sync_client.cc
+++ b/chrome/browser/sync/chrome_sync_client.cc
@@ -104,8 +104,8 @@
#if defined(OS_CHROMEOS)
#include "chrome/browser/ui/app_list/arc/arc_package_sync_data_type_controller.h"
#include "chrome/browser/ui/app_list/arc/arc_package_syncable_service.h"
-#include "components/wifi_sync/wifi_credential_syncable_service.h"
-#include "components/wifi_sync/wifi_credential_syncable_service_factory.h"
+#include "components/sync_wifi/wifi_credential_syncable_service.h"
+#include "components/sync_wifi/wifi_credential_syncable_service_factory.h"
#endif
using content::BrowserThread;
@@ -412,8 +412,9 @@ ChromeSyncClient::GetSyncableServiceForType(syncer::ModelType type) {
}
#if defined(OS_CHROMEOS)
case syncer::WIFI_CREDENTIALS:
- return wifi_sync::WifiCredentialSyncableServiceFactory::
- GetForBrowserContext(profile_)->AsWeakPtr();
+ return sync_wifi::WifiCredentialSyncableServiceFactory::
+ GetForBrowserContext(profile_)
+ ->AsWeakPtr();
case syncer::ARC_PACKAGE:
return arc::ArcPackageSyncableService::Get(profile_)->AsWeakPtr();
#endif
« no previous file with comments | « chrome/browser/sync/DEPS ('k') | chrome/browser/sync/test/integration/single_client_wifi_credentials_sync_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698