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

Unified Diff: chrome/browser/password_manager/chrome_password_manager_client_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
« no previous file with comments | « no previous file | chrome/browser/password_manager/mock_password_store_service.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/password_manager/chrome_password_manager_client_unittest.cc
diff --git a/chrome/browser/password_manager/chrome_password_manager_client_unittest.cc b/chrome/browser/password_manager/chrome_password_manager_client_unittest.cc
index be27fc3ebc3b70bc1ae7be15ab98ab5dad2009cc..0ce70f2747c674e6d9701d8fa1d841ca57fb9acb 100644
--- a/chrome/browser/password_manager/chrome_password_manager_client_unittest.cc
+++ b/chrome/browser/password_manager/chrome_password_manager_client_unittest.cc
@@ -41,7 +41,7 @@ class MockLogReceiver : public password_manager::LogReceiver {
class TestChromePasswordManagerClient : public ChromePasswordManagerClient {
public:
explicit TestChromePasswordManagerClient(content::WebContents* web_contents)
- : ChromePasswordManagerClient(web_contents, NULL),
+ : ChromePasswordManagerClient(web_contents, nullptr),
is_sync_account_credential_(false) {}
~TestChromePasswordManagerClient() override {}
@@ -82,13 +82,13 @@ class ChromePasswordManagerClientTest : public ChromeRenderViewHostTestHarness {
};
ChromePasswordManagerClientTest::ChromePasswordManagerClientTest()
- : service_(NULL) {
+ : service_(nullptr) {
}
void ChromePasswordManagerClientTest::SetUp() {
ChromeRenderViewHostTestHarness::SetUp();
ChromePasswordManagerClient::CreateForWebContentsWithAutofillClient(
- web_contents(), NULL);
+ web_contents(), nullptr);
service_ = password_manager::PasswordManagerInternalsServiceFactory::
GetForBrowserContext(profile());
ASSERT_TRUE(service_);
« no previous file with comments | « no previous file | chrome/browser/password_manager/mock_password_store_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698