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

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

Issue 1141413002: Prepare password_bubble_experiment and password_manager_util for componentisation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix Android 2 Created 5 years, 7 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/password_manager_util.cc
diff --git a/chrome/browser/password_manager/password_manager_util.cc b/chrome/browser/password_manager/password_manager_util.cc
index 32d04865a0bb493ad9ca0387fdd451d8ce445c91..e1c1c6adafb3116b3326d8b5fdee271dc73c17bc 100644
--- a/chrome/browser/password_manager/password_manager_util.cc
+++ b/chrome/browser/password_manager/password_manager_util.cc
@@ -4,12 +4,12 @@
#include "chrome/browser/password_manager/password_manager_util.h"
-#include "chrome/browser/sync/profile_sync_service.h"
+#include "components/sync_driver/sync_service.h"
namespace password_manager_util {
password_manager::PasswordSyncState GetPasswordSyncState(
- const ProfileSyncService* sync_service) {
+ const sync_driver::SyncService* sync_service) {
if (sync_service && sync_service->HasSyncSetupCompleted() &&
sync_service->SyncActive() &&
sync_service->GetActiveDataTypes().Has(syncer::PASSWORDS)) {

Powered by Google App Engine
This is Rietveld 408576698