Index: ios/chrome/browser/ui/webui/history/browsing_history_handler.cc |
diff --git a/ios/chrome/browser/ui/webui/history/browsing_history_handler.cc b/ios/chrome/browser/ui/webui/history/browsing_history_handler.cc |
index 940866de8129ed9f357d7a4b46f4e78d27043a72..dbf8d2b6a4873106001dae80742d0f84a03fcd79 100644 |
--- a/ios/chrome/browser/ui/webui/history/browsing_history_handler.cc |
+++ b/ios/chrome/browser/ui/webui/history/browsing_history_handler.cc |
@@ -111,7 +111,7 @@ void GetDeviceNameAndType(const browser_sync::ProfileSyncService* sync_service, |
DCHECK(sync_service->GetDeviceInfoTracker()); |
DCHECK(sync_service->GetDeviceInfoTracker()->IsSyncing()); |
- std::unique_ptr<sync_driver::DeviceInfo> device_info = |
+ std::unique_ptr<syncer::DeviceInfo> device_info = |
sync_service->GetDeviceInfoTracker()->GetDeviceInfo(client_id); |
if (device_info.get()) { |
*name = device_info->client_name(); |
@@ -282,7 +282,7 @@ void BrowsingHistoryHandler::RegisterMessages() { |
original_browser_state, ServiceAccessType::EXPLICIT_ACCESS); |
scoped_refptr<history::TopSites> top_sites = |
ios::TopSitesFactory::GetForBrowserState(original_browser_state); |
- sync_driver::SyncService* sync_service = |
+ syncer::SyncService* sync_service = |
IOSChromeProfileSyncServiceFactory::GetForBrowserState( |
original_browser_state); |
web::URLDataSourceIOS::Add( |