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

Unified Diff: components/password_manager/core/browser/password_store_factory_util.cc

Issue 2376123003: [Sync] Move //components/sync to the syncer namespace. (Closed)
Patch Set: Rebase. Created 4 years, 3 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: components/password_manager/core/browser/password_store_factory_util.cc
diff --git a/components/password_manager/core/browser/password_store_factory_util.cc b/components/password_manager/core/browser/password_store_factory_util.cc
index 49e3733280fb2d826b6f5d7c7a51599a813373c1..f4c93150afc9ecebf414512508c01966b3793734 100644
--- a/components/password_manager/core/browser/password_store_factory_util.cc
+++ b/components/password_manager/core/browser/password_store_factory_util.cc
@@ -17,8 +17,7 @@ namespace password_manager {
namespace {
-bool ShouldAffiliationBasedMatchingBeActive(
- sync_driver::SyncService* sync_service) {
+bool ShouldAffiliationBasedMatchingBeActive(syncer::SyncService* sync_service) {
return base::FeatureList::IsEnabled(features::kAffiliationBasedMatching) &&
sync_service && sync_service->CanSyncStart() &&
sync_service->IsSyncActive() &&
@@ -55,7 +54,7 @@ base::FilePath GetAffiliationDatabasePath(const base::FilePath& profile_path) {
void ToggleAffiliationBasedMatchingBasedOnPasswordSyncedState(
PasswordStore* password_store,
- sync_driver::SyncService* sync_service,
+ syncer::SyncService* sync_service,
net::URLRequestContextGetter* request_context_getter,
const base::FilePath& profile_path,
scoped_refptr<base::SingleThreadTaskRunner> db_thread_runner) {

Powered by Google App Engine
This is Rietveld 408576698