| 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/password_manager_client.h" | 5 #include "components/password_manager/core/browser/password_manager_client.h" |
| 6 | 6 |
| 7 namespace password_manager { | 7 namespace password_manager { |
| 8 | 8 |
| 9 bool PasswordManagerClient::IsAutomaticPasswordSavingEnabled() const { |
| 10 return false; |
| 11 } |
| 12 |
| 9 base::FieldTrial::Probability | 13 base::FieldTrial::Probability |
| 10 PasswordManagerClient::GetProbabilityForExperiment( | 14 PasswordManagerClient::GetProbabilityForExperiment( |
| 11 const std::string& experiment_name) { | 15 const std::string& experiment_name) { |
| 12 return 0; | 16 return 0; |
| 13 } | 17 } |
| 14 | 18 |
| 15 bool PasswordManagerClient::IsPasswordSyncEnabled() { return false; } | 19 bool PasswordManagerClient::IsPasswordSyncEnabled() { return false; } |
| 16 | 20 |
| 17 void PasswordManagerClient::SetLogger(PasswordManagerLogger* logger) { | 21 void PasswordManagerClient::SetLogger(PasswordManagerLogger* logger) { |
| 18 } | 22 } |
| 19 | 23 |
| 20 void PasswordManagerClient::LogSavePasswordProgress(const std::string& text) { | 24 void PasswordManagerClient::LogSavePasswordProgress(const std::string& text) { |
| 21 } | 25 } |
| 22 | 26 |
| 23 bool PasswordManagerClient::IsLoggingActive() const { | 27 bool PasswordManagerClient::IsLoggingActive() const { |
| 24 return false; | 28 return false; |
| 25 } | 29 } |
| 26 | 30 |
| 27 } // namespace password_manager | 31 } // namespace password_manager |
| OLD | NEW |