| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_STUB_PASSWORD_MANAGER_CLIENT_H_ | 5 #ifndef COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_STUB_PASSWORD_MANAGER_CLIENT_H_ |
| 6 #define COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_STUB_PASSWORD_MANAGER_CLIENT_H_ | 6 #define COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_STUB_PASSWORD_MANAGER_CLIENT_H_ |
| 7 | 7 |
| 8 #include "components/password_manager/core/browser/password_manager_client.h" | 8 #include "components/password_manager/core/browser/password_manager_client.h" |
| 9 | 9 |
| 10 namespace password_manager { | 10 namespace password_manager { |
| 11 | 11 |
| 12 // Use this class as a base for mock or test clients to avoid stubbing | 12 // Use this class as a base for mock or test clients to avoid stubbing |
| 13 // uninteresting pure virtual methods. All the implemented methods are just | 13 // uninteresting pure virtual methods. All the implemented methods are just |
| 14 // trivial stubs. Do NOT use in production, only use in tests. | 14 // trivial stubs. Do NOT use in production, only use in tests. |
| 15 class StubPasswordManagerClient : public PasswordManagerClient { | 15 class StubPasswordManagerClient : public PasswordManagerClient { |
| 16 public: | 16 public: |
| 17 StubPasswordManagerClient(); | 17 StubPasswordManagerClient(); |
| 18 virtual ~StubPasswordManagerClient(); | 18 virtual ~StubPasswordManagerClient(); |
| 19 | 19 |
| 20 // PasswordManagerClient: | 20 // PasswordManagerClient: |
| 21 virtual bool IsSyncAccountCredential( | 21 virtual bool IsSyncAccountCredential( |
| 22 const std::string& username, const std::string& origin) const OVERRIDE; | 22 const std::string& username, const std::string& origin) const OVERRIDE; |
| 23 virtual bool ShouldFilterAutofillResult( | 23 virtual bool ShouldFilterAutofillResult( |
| 24 const autofill::PasswordForm& form) OVERRIDE; | 24 const autofill::PasswordForm& form) OVERRIDE; |
| 25 virtual void PromptUserToSavePassword( | 25 virtual bool PromptUserToSavePassword( |
| 26 scoped_ptr<PasswordFormManager> form_to_save) OVERRIDE; | 26 scoped_ptr<PasswordFormManager> form_to_save) OVERRIDE; |
| 27 virtual void AutomaticPasswordSave( | 27 virtual void AutomaticPasswordSave( |
| 28 scoped_ptr<PasswordFormManager> saved_manager) OVERRIDE; | 28 scoped_ptr<PasswordFormManager> saved_manager) OVERRIDE; |
| 29 virtual void AuthenticateAutofillAndFillForm( | 29 virtual void AuthenticateAutofillAndFillForm( |
| 30 scoped_ptr<autofill::PasswordFormFillData> fill_data) OVERRIDE; | 30 scoped_ptr<autofill::PasswordFormFillData> fill_data) OVERRIDE; |
| 31 virtual PrefService* GetPrefs() OVERRIDE; | 31 virtual PrefService* GetPrefs() OVERRIDE; |
| 32 virtual PasswordStore* GetPasswordStore() OVERRIDE; | 32 virtual PasswordStore* GetPasswordStore() OVERRIDE; |
| 33 virtual PasswordManagerDriver* GetDriver() OVERRIDE; | 33 virtual PasswordManagerDriver* GetDriver() OVERRIDE; |
| 34 | 34 |
| 35 private: | 35 private: |
| 36 DISALLOW_COPY_AND_ASSIGN(StubPasswordManagerClient); | 36 DISALLOW_COPY_AND_ASSIGN(StubPasswordManagerClient); |
| 37 }; | 37 }; |
| 38 | 38 |
| 39 } // namespace password_manager | 39 } // namespace password_manager |
| 40 | 40 |
| 41 #endif // COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_STUB_PASSWORD_MANAGER_CLIENT
_H_ | 41 #endif // COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_STUB_PASSWORD_MANAGER_CLIENT
_H_ |
| OLD | NEW |