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

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

Issue 10068036: RefCounted types should not have public destructors, chrome/browser/ part 5 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Win fix Created 8 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
« no previous file with comments | « no previous file | chrome/browser/password_manager/mock_password_store.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/password_manager/mock_password_store.h
diff --git a/chrome/browser/password_manager/mock_password_store.h b/chrome/browser/password_manager/mock_password_store.h
index 5a13964390d887441cdc9d6ec20bf0cec5ccac6d..627b5db4cbe62c02d9bb16d9309ea7d9f7f180a8 100644
--- a/chrome/browser/password_manager/mock_password_store.h
+++ b/chrome/browser/password_manager/mock_password_store.h
@@ -14,7 +14,6 @@ class Profile;
class MockPasswordStore : public PasswordStore {
public:
MockPasswordStore();
- virtual ~MockPasswordStore();
static scoped_refptr<RefcountedProfileKeyedService> Build(Profile* profile);
@@ -40,6 +39,9 @@ class MockPasswordStore : public PasswordStore {
bool(std::vector<webkit::forms::PasswordForm*>*));
virtual void ShutdownOnUIThread();
+
+ private:
+ virtual ~MockPasswordStore();
};
#endif // CHROME_BROWSER_PASSWORD_MANAGER_MOCK_PASSWORD_STORE_H_
« no previous file with comments | « no previous file | chrome/browser/password_manager/mock_password_store.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698