Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / components / password_manager / core / browser / password_manager_client.cc
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
3 // found in the LICENSE file.
4
5 #include "components/password_manager/core/browser/password_manager_client.h"
6
7 namespace password_manager {
8
9 bool PasswordManagerClient::IsAutomaticPasswordSavingEnabled() const {
10   return false;
11 }
12
13 base::FieldTrial::Probability
14 PasswordManagerClient::GetProbabilityForExperiment(
15     const std::string& experiment_name) {
16   return 0;
17 }
18
19 bool PasswordManagerClient::IsPasswordSyncEnabled() { return false; }
20
21 void PasswordManagerClient::SetLogger(PasswordManagerLogger* logger) {
22 }
23
24 void PasswordManagerClient::LogSavePasswordProgress(const std::string& text) {
25 }
26
27 bool PasswordManagerClient::IsLoggingActive() const {
28   return false;
29 }
30
31 }  // namespace password_manager