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

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

Issue 1551433002: Switch to standard integer types in components/, part 3 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more Created 4 years, 11 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 "base/macros.h"
5 #include "components/password_manager/core/browser/password_manager_client.h" 6 #include "components/password_manager/core/browser/password_manager_client.h"
6 7
7 namespace password_manager { 8 namespace password_manager {
8 9
9 bool PasswordManagerClient::IsAutomaticPasswordSavingEnabled() const { 10 bool PasswordManagerClient::IsAutomaticPasswordSavingEnabled() const {
10 return false; 11 return false;
11 } 12 }
12 13
13 bool PasswordManagerClient::IsSavingAndFillingEnabledForCurrentPage() const { 14 bool PasswordManagerClient::IsSavingAndFillingEnabledForCurrentPage() const {
14 return true; 15 return true;
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 78
78 bool PasswordManagerClient::IsUpdatePasswordUIEnabled() const { 79 bool PasswordManagerClient::IsUpdatePasswordUIEnabled() const {
79 return false; 80 return false;
80 } 81 }
81 82
82 const LogManager* PasswordManagerClient::GetLogManager() const { 83 const LogManager* PasswordManagerClient::GetLogManager() const {
83 return nullptr; 84 return nullptr;
84 } 85 }
85 86
86 } // namespace password_manager 87 } // namespace password_manager
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698