Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_DEFAULT_H_ | 5 #ifndef CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_DEFAULT_H_ |
| 6 #define CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_DEFAULT_H_ | 6 #define CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_DEFAULT_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 11 matching lines...) Expand all Loading... | |
| 22 public: | 22 public: |
| 23 // Takes ownership of |login_db|. | 23 // Takes ownership of |login_db|. |
| 24 PasswordStoreDefault(LoginDatabase* login_db, | 24 PasswordStoreDefault(LoginDatabase* login_db, |
| 25 Profile* profile, | 25 Profile* profile, |
| 26 WebDataService* web_data_service); | 26 WebDataService* web_data_service); |
| 27 | 27 |
| 28 protected: | 28 protected: |
| 29 virtual ~PasswordStoreDefault(); | 29 virtual ~PasswordStoreDefault(); |
| 30 | 30 |
| 31 // Implements PasswordStore interface. | 31 // Implements PasswordStore interface. |
| 32 virtual void Shutdown() OVERRIDE; | 32 virtual void ShutdownOnUIThread() OVERRIDE; |
|
Mike Mammarella
2012/03/10 05:11:52
Does this actually override now? The method is rem
| |
| 33 virtual void ReportMetricsImpl() OVERRIDE; | 33 virtual void ReportMetricsImpl() OVERRIDE; |
| 34 virtual void AddLoginImpl(const webkit::forms::PasswordForm& form) OVERRIDE; | 34 virtual void AddLoginImpl(const webkit::forms::PasswordForm& form) OVERRIDE; |
| 35 virtual void UpdateLoginImpl( | 35 virtual void UpdateLoginImpl( |
| 36 const webkit::forms::PasswordForm& form) OVERRIDE; | 36 const webkit::forms::PasswordForm& form) OVERRIDE; |
| 37 virtual void RemoveLoginImpl( | 37 virtual void RemoveLoginImpl( |
| 38 const webkit::forms::PasswordForm& form) OVERRIDE; | 38 const webkit::forms::PasswordForm& form) OVERRIDE; |
| 39 virtual void RemoveLoginsCreatedBetweenImpl( | 39 virtual void RemoveLoginsCreatedBetweenImpl( |
| 40 const base::Time& delete_begin, const base::Time& delete_end) OVERRIDE; | 40 const base::Time& delete_begin, const base::Time& delete_end) OVERRIDE; |
| 41 virtual void GetLoginsImpl(GetLoginsRequest* request, | 41 virtual void GetLoginsImpl(GetLoginsRequest* request, |
| 42 const webkit::forms::PasswordForm& form) OVERRIDE; | 42 const webkit::forms::PasswordForm& form) OVERRIDE; |
| (...skipping 19 matching lines...) Expand all Loading... | |
| 62 | 62 |
| 63 scoped_ptr<LoginDatabase> login_db_; | 63 scoped_ptr<LoginDatabase> login_db_; |
| 64 Profile* profile_; | 64 Profile* profile_; |
| 65 | 65 |
| 66 scoped_ptr<MigrateHelper> migrate_helper_; | 66 scoped_ptr<MigrateHelper> migrate_helper_; |
| 67 | 67 |
| 68 DISALLOW_COPY_AND_ASSIGN(PasswordStoreDefault); | 68 DISALLOW_COPY_AND_ASSIGN(PasswordStoreDefault); |
| 69 }; | 69 }; |
| 70 | 70 |
| 71 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_DEFAULT_H_ | 71 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_DEFAULT_H_ |
| OLD | NEW |