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

Unified Diff: ios/chrome/browser/sync/ios_chrome_sync_client.mm

Issue 2612323003: [Sync] Filter out types that can't be synced at configure time. (Closed)
Patch Set: Fix bots. Created 3 years, 11 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
« no previous file with comments | « ios/chrome/browser/sync/ios_chrome_sync_client.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/chrome/browser/sync/ios_chrome_sync_client.mm
diff --git a/ios/chrome/browser/sync/ios_chrome_sync_client.mm b/ios/chrome/browser/sync/ios_chrome_sync_client.mm
index 79d38cd0bd05029170ac21e75a5c1842f647e765..5ed9a2bd41c21860113d2f7ea313d5b195f5f1c3 100644
--- a/ios/chrome/browser/sync/ios_chrome_sync_client.mm
+++ b/ios/chrome/browser/sync/ios_chrome_sync_client.mm
@@ -202,6 +202,11 @@ history::HistoryService* IOSChromeSyncClient::GetHistoryService() {
browser_state_, ServiceAccessType::EXPLICIT_ACCESS);
}
+bool IOSChromeSyncClient::HasPasswordStore() {
+ DCHECK_CURRENTLY_ON(web::WebThread::UI);
+ return password_store_ != nullptr;
+}
+
autofill::PersonalDataManager* IOSChromeSyncClient::GetPersonalDataManager() {
DCHECK_CURRENTLY_ON(web::WebThread::UI);
return autofill::PersonalDataManagerFactory::GetForBrowserState(
« no previous file with comments | « ios/chrome/browser/sync/ios_chrome_sync_client.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698