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

Unified Diff: components/password_manager/core/browser/password_syncable_service.h

Issue 246253014: Remove friend classes from PasswordStore. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: nits Created 6 years, 8 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_syncable_service.h
diff --git a/components/password_manager/core/browser/password_syncable_service.h b/components/password_manager/core/browser/password_syncable_service.h
index a385c1c170a6d9e6b35dc7e475cbcfa5f879255c..b70ea1f0c4edab6a2a124fdd422a2af8e5e74862 100644
--- a/components/password_manager/core/browser/password_syncable_service.h
+++ b/components/password_manager/core/browser/password_syncable_service.h
@@ -32,13 +32,13 @@ class SyncErrorFactory;
namespace password_manager {
-class PasswordStore;
+class PasswordStoreSync;
class PasswordSyncableService : public syncer::SyncableService,
public base::NonThreadSafe {
public:
// |PasswordSyncableService| is owned by |PasswordStore|.
- explicit PasswordSyncableService(PasswordStore* password_store);
+ explicit PasswordSyncableService(PasswordStoreSync* password_store);
virtual ~PasswordSyncableService();
// syncer::SyncableServiceImplementations
@@ -107,7 +107,7 @@ class PasswordSyncableService : public syncer::SyncableService,
scoped_ptr<syncer::SyncChangeProcessor> sync_processor_;
// The password store that adds/updates/deletes password entries.
- PasswordStore* const password_store_;
+ PasswordStoreSync* const password_store_;
// A signal to start sync as soon as possible.
syncer::SyncableService::StartSyncFlare flare_;

Powered by Google App Engine
This is Rietveld 408576698