| Index: chrome/browser/password_manager/password_store_x_unittest.cc
|
| diff --git a/chrome/browser/password_manager/password_store_x_unittest.cc b/chrome/browser/password_manager/password_store_x_unittest.cc
|
| index 0e9e7669f66d1261cdd20d898fa9ecb3ae10328f..737353c320e838aadbd6c815d944910fc7a3474e 100644
|
| --- a/chrome/browser/password_manager/password_store_x_unittest.cc
|
| +++ b/chrome/browser/password_manager/password_store_x_unittest.cc
|
| @@ -232,8 +232,8 @@ void InitExpectedForms(bool autofillable,
|
| L"submit_element",
|
| L"username_element",
|
| L"password_element",
|
| - autofillable ? L"username_value" : NULL,
|
| - autofillable ? L"password_value" : NULL,
|
| + autofillable ? L"username_value" : nullptr,
|
| + autofillable ? L"password_value" : nullptr,
|
| autofillable,
|
| false,
|
| static_cast<double>(i + 1)};
|
| @@ -273,7 +273,7 @@ class PasswordStoreXTest : public testing::TestWithParam<BackendType> {
|
| case WORKING_BACKEND:
|
| return new MockBackend();
|
| default:
|
| - return NULL;
|
| + return nullptr;
|
| }
|
| }
|
|
|
|
|