Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(365)

Side by Side Diff: components/password_manager/core/browser/password_manager_client.cc

Issue 256003003: Enable Automatic Passwords Saving (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698