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

Unified Diff: chrome/browser/password_manager/chrome_password_manager_client.cc

Issue 2354613002: [Sync] Fix namespaces for the browser_sync component. (Closed)
Patch Set: Address comments. 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: chrome/browser/password_manager/chrome_password_manager_client.cc
diff --git a/chrome/browser/password_manager/chrome_password_manager_client.cc b/chrome/browser/password_manager/chrome_password_manager_client.cc
index d20d5ac70df05459676438bd923de050dcabe119..31f1893633e9844a030c376eb2034d0de243dc1f 100644
--- a/chrome/browser/password_manager/chrome_password_manager_client.cc
+++ b/chrome/browser/password_manager/chrome_password_manager_client.cc
@@ -389,7 +389,7 @@ ChromePasswordManagerClient::GetPasswordStore() const {
password_manager::PasswordSyncState
ChromePasswordManagerClient::GetPasswordSyncState() const {
- const ProfileSyncService* sync_service =
+ const browser_sync::ProfileSyncService* sync_service =
ProfileSyncServiceFactory::GetForProfile(profile_);
return password_manager_util::GetPasswordSyncState(sync_service);
}
@@ -584,7 +584,7 @@ bool ChromePasswordManagerClient::ShouldAnnotateNavigationEntries(
if (!ChromeMetricsServiceAccessor::IsMetricsAndCrashReportingEnabled())
return false;
- ProfileSyncService* profile_sync_service =
+ browser_sync::ProfileSyncService* profile_sync_service =
ProfileSyncServiceFactory::GetForProfile(profile);
if (!profile_sync_service || !profile_sync_service->IsSyncActive() ||
profile_sync_service->IsUsingSecondaryPassphrase()) {

Powered by Google App Engine
This is Rietveld 408576698