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/sync/browser/password_sync_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/sync/browser/password_sync_util.cc
diff --git a/components/password_manager/sync/browser/password_sync_util.cc b/components/password_manager/sync/browser/password_sync_util.cc
index 9eadfdf4f1cb38964bf135af39c59e9847fc5e4f..34841d40fea80a2669d82686783e3e963f75d1e5 100644
--- a/components/password_manager/sync/browser/password_sync_util.cc
+++ b/components/password_manager/sync/browser/password_sync_util.cc
@@ -17,7 +17,7 @@ namespace password_manager {
namespace sync_util {
std::string GetSyncUsernameIfSyncingPasswords(
- const sync_driver::SyncService* sync_service,
+ const syncer::SyncService* sync_service,
const SigninManagerBase* signin_manager) {
if (!signin_manager)
return std::string();
@@ -32,7 +32,7 @@ std::string GetSyncUsernameIfSyncingPasswords(
}
bool IsSyncAccountCredential(const autofill::PasswordForm& form,
- const sync_driver::SyncService* sync_service,
+ const syncer::SyncService* sync_service,
const SigninManagerBase* signin_manager) {
const Origin gaia_origin(GaiaUrls::GetInstance()->gaia_url().GetOrigin());
if (!Origin(GURL(form.signon_realm)).IsSameOriginWith(gaia_origin)) {

Powered by Google App Engine
This is Rietveld 408576698