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

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

Issue 951883002: [Password Manager Cleanup] Replaces NULL -> nullptr. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addresses Vaclav's comments. Created 5 years, 10 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/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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 46
47 void StubPasswordManagerClient::NotifyUserAutoSignin( 47 void StubPasswordManagerClient::NotifyUserAutoSignin(
48 ScopedVector<autofill::PasswordForm> local_forms) { 48 ScopedVector<autofill::PasswordForm> local_forms) {
49 } 49 }
50 50
51 void StubPasswordManagerClient::AutomaticPasswordSave( 51 void StubPasswordManagerClient::AutomaticPasswordSave(
52 scoped_ptr<PasswordFormManager> saved_manager) { 52 scoped_ptr<PasswordFormManager> saved_manager) {
53 } 53 }
54 54
55 PrefService* StubPasswordManagerClient::GetPrefs() { 55 PrefService* StubPasswordManagerClient::GetPrefs() {
56 return NULL; 56 return nullptr;
57 } 57 }
58 58
59 PasswordStore* StubPasswordManagerClient::GetPasswordStore() const { 59 PasswordStore* StubPasswordManagerClient::GetPasswordStore() const {
60 return NULL; 60 return nullptr;
61 } 61 }
62 62
63 } // namespace password_manager 63 } // namespace password_manager
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698