| 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 } | 44 } |
| 45 | 45 |
| 46 void StubPasswordManagerClient::AutomaticPasswordSave( | 46 void StubPasswordManagerClient::AutomaticPasswordSave( |
| 47 scoped_ptr<PasswordFormManager> saved_manager) { | 47 scoped_ptr<PasswordFormManager> saved_manager) { |
| 48 } | 48 } |
| 49 | 49 |
| 50 PrefService* StubPasswordManagerClient::GetPrefs() { | 50 PrefService* StubPasswordManagerClient::GetPrefs() { |
| 51 return NULL; | 51 return NULL; |
| 52 } | 52 } |
| 53 | 53 |
| 54 PasswordStore* StubPasswordManagerClient::GetPasswordStore() { | 54 PasswordStore* StubPasswordManagerClient::GetPasswordStore() const { |
| 55 return NULL; | 55 return NULL; |
| 56 } | 56 } |
| 57 | 57 |
| 58 } // namespace password_manager | 58 } // namespace password_manager |
| OLD | NEW |