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

Unified Diff: chrome/browser/password_manager/password_store_mac.h

Issue 2931863002: Rename PasswordStoreProxyMac to PasswordStoreMac. (Closed)
Patch Set: Created 3 years, 6 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_store_mac.h
diff --git a/chrome/browser/password_manager/password_store_proxy_mac.h b/chrome/browser/password_manager/password_store_mac.h
similarity index 78%
rename from chrome/browser/password_manager/password_store_proxy_mac.h
rename to chrome/browser/password_manager/password_store_mac.h
index 23460eaec914ed546024e7d09212d363b051d8ae..fa720d56658a7844bcdb5f759642c1c82d32cfdd 100644
--- a/chrome/browser/password_manager/password_store_proxy_mac.h
+++ b/chrome/browser/password_manager/password_store_mac.h
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_PROXY_MAC_H_
-#define CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_PROXY_MAC_H_
+#ifndef CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_MAC_H_
+#define CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_MAC_H_
#include <memory>
@@ -18,9 +18,9 @@ class LoginDatabase;
}
// Password store for Mac. It creates a dedicated background thread
-class PasswordStoreProxyMac : public password_manager::PasswordStoreDefault {
+class PasswordStoreMac : public password_manager::PasswordStoreDefault {
public:
- PasswordStoreProxyMac(
+ PasswordStoreMac(
scoped_refptr<base::SingleThreadTaskRunner> main_thread_runner,
std::unique_ptr<password_manager::LoginDatabase> login_db,
PrefService* prefs);
@@ -37,7 +37,7 @@ class PasswordStoreProxyMac : public password_manager::PasswordStoreDefault {
#endif
private:
- ~PasswordStoreProxyMac() override;
+ ~PasswordStoreMac() override;
void InitOnBackgroundThread(password_manager::MigrationStatus status);
@@ -50,7 +50,7 @@ class PasswordStoreProxyMac : public password_manager::PasswordStoreDefault {
// Current migration status for the profile.
IntegerPrefMember migration_status_;
- DISALLOW_COPY_AND_ASSIGN(PasswordStoreProxyMac);
+ DISALLOW_COPY_AND_ASSIGN(PasswordStoreMac);
};
-#endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_PROXY_MAC_H_
+#endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_MAC_H_
« no previous file with comments | « chrome/browser/password_manager/password_store_factory.cc ('k') | chrome/browser/password_manager/password_store_mac.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698