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

Unified Diff: components/password_manager/core/browser/password_autofill_manager_unittest.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 side-by-side diff with in-line comments
Download patch
Index: components/password_manager/core/browser/password_autofill_manager_unittest.cc
diff --git a/components/password_manager/core/browser/password_autofill_manager_unittest.cc b/components/password_manager/core/browser/password_autofill_manager_unittest.cc
index 2e9df20e24378a93105b3c571ac0afc97fc6af59..dc8563e10333f0c44b7cc471a78a8bf5114f5e86 100644
--- a/components/password_manager/core/browser/password_autofill_manager_unittest.cc
+++ b/components/password_manager/core/browser/password_autofill_manager_unittest.cc
@@ -119,7 +119,7 @@ class PasswordAutofillManagerTest : public testing::Test {
TEST_F(PasswordAutofillManagerTest, FillSuggestion) {
scoped_ptr<TestPasswordManagerClient> client(new TestPasswordManagerClient);
- InitializePasswordAutofillManager(client.get(), NULL);
+ InitializePasswordAutofillManager(client.get(), nullptr);
EXPECT_CALL(*client->mock_driver(),
FillSuggestion(test_username_, test_password_));
@@ -143,7 +143,7 @@ TEST_F(PasswordAutofillManagerTest, FillSuggestion) {
TEST_F(PasswordAutofillManagerTest, PreviewSuggestion) {
scoped_ptr<TestPasswordManagerClient> client(new TestPasswordManagerClient);
- InitializePasswordAutofillManager(client.get(), NULL);
+ InitializePasswordAutofillManager(client.get(), nullptr);
EXPECT_CALL(*client->mock_driver(),
PreviewSuggestion(test_username_, test_password_));

Powered by Google App Engine
This is Rietveld 408576698