| 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 #include "components/password_manager/core/browser/stub_password_manager_client.
h" | 5 #include "components/password_manager/core/browser/stub_password_manager_client.
h" |
| 6 | 6 |
| 7 #include "base/memory/scoped_vector.h" | 7 #include "base/memory/scoped_vector.h" |
| 8 #include "components/password_manager/core/browser/password_form_manager.h" | 8 #include "components/password_manager/core/browser/password_form_manager.h" |
| 9 | 9 |
| 10 namespace password_manager { | 10 namespace password_manager { |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 | 46 |
| 47 void StubPasswordManagerClient::NotifyUserAutoSignin( | 47 void StubPasswordManagerClient::NotifyUserAutoSignin( |
| 48 ScopedVector<autofill::PasswordForm> local_forms) { | 48 ScopedVector<autofill::PasswordForm> local_forms) { |
| 49 } | 49 } |
| 50 | 50 |
| 51 void StubPasswordManagerClient::AutomaticPasswordSave( | 51 void StubPasswordManagerClient::AutomaticPasswordSave( |
| 52 scoped_ptr<PasswordFormManager> saved_manager) { | 52 scoped_ptr<PasswordFormManager> saved_manager) { |
| 53 } | 53 } |
| 54 | 54 |
| 55 PrefService* StubPasswordManagerClient::GetPrefs() { | 55 PrefService* StubPasswordManagerClient::GetPrefs() { |
| 56 return NULL; | 56 return nullptr; |
| 57 } | 57 } |
| 58 | 58 |
| 59 PasswordStore* StubPasswordManagerClient::GetPasswordStore() const { | 59 PasswordStore* StubPasswordManagerClient::GetPasswordStore() const { |
| 60 return NULL; | 60 return nullptr; |
| 61 } | 61 } |
| 62 | 62 |
| 63 } // namespace password_manager | 63 } // namespace password_manager |
| OLD | NEW |