| 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 29 matching lines...) Expand all Loading... |
| 40 return false; | 40 return false; |
| 41 } | 41 } |
| 42 | 42 |
| 43 void StubPasswordManagerClient::AutomaticPasswordSave( | 43 void StubPasswordManagerClient::AutomaticPasswordSave( |
| 44 scoped_ptr<PasswordFormManager> saved_manager) {} | 44 scoped_ptr<PasswordFormManager> saved_manager) {} |
| 45 | 45 |
| 46 PrefService* StubPasswordManagerClient::GetPrefs() { return NULL; } | 46 PrefService* StubPasswordManagerClient::GetPrefs() { return NULL; } |
| 47 | 47 |
| 48 PasswordStore* StubPasswordManagerClient::GetPasswordStore() { return NULL; } | 48 PasswordStore* StubPasswordManagerClient::GetPasswordStore() { return NULL; } |
| 49 | 49 |
| 50 PasswordManagerDriver* StubPasswordManagerClient::GetDriver() { return NULL; } | |
| 51 | |
| 52 } // namespace password_manager | 50 } // namespace password_manager |
| OLD | NEW |