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

Side by Side Diff: components/password_manager/core/browser/stub_password_manager_driver.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_driver. h" 5 #include "components/password_manager/core/browser/stub_password_manager_driver. h"
6 6
7 namespace password_manager { 7 namespace password_manager {
8 8
9 StubPasswordManagerDriver::StubPasswordManagerDriver() { 9 StubPasswordManagerDriver::StubPasswordManagerDriver() {
10 } 10 }
(...skipping 24 matching lines...) Expand all
35 void StubPasswordManagerDriver::PreviewSuggestion( 35 void StubPasswordManagerDriver::PreviewSuggestion(
36 const base::string16& username, 36 const base::string16& username,
37 const base::string16& password) { 37 const base::string16& password) {
38 } 38 }
39 39
40 void StubPasswordManagerDriver::ClearPreviewedForm() { 40 void StubPasswordManagerDriver::ClearPreviewedForm() {
41 } 41 }
42 42
43 PasswordGenerationManager* 43 PasswordGenerationManager*
44 StubPasswordManagerDriver::GetPasswordGenerationManager() { 44 StubPasswordManagerDriver::GetPasswordGenerationManager() {
45 return NULL; 45 return nullptr;
46 } 46 }
47 47
48 PasswordManager* StubPasswordManagerDriver::GetPasswordManager() { 48 PasswordManager* StubPasswordManagerDriver::GetPasswordManager() {
49 return NULL; 49 return nullptr;
50 } 50 }
51 51
52 PasswordAutofillManager* 52 PasswordAutofillManager*
53 StubPasswordManagerDriver::GetPasswordAutofillManager() { 53 StubPasswordManagerDriver::GetPasswordAutofillManager() {
54 return NULL; 54 return nullptr;
55 } 55 }
56 56
57 } // namespace password_manager 57 } // namespace password_manager
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698