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

Unified Diff: extensions/browser/content_verify_job.cc

Issue 598173003: Run clang-modernize -use-nullptr over src/extensions/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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: extensions/browser/content_verify_job.cc
diff --git a/extensions/browser/content_verify_job.cc b/extensions/browser/content_verify_job.cc
index e7e8cab9dd69a7bdf4298876a6f8966138e167a6..99903784a010810ca94078cd6fd08fccdbf338dc 100644
--- a/extensions/browser/content_verify_job.cc
+++ b/extensions/browser/content_verify_job.cc
@@ -19,7 +19,7 @@ namespace extensions {
namespace {
-ContentVerifyJob::TestDelegate* g_test_delegate = NULL;
+ContentVerifyJob::TestDelegate* g_test_delegate = nullptr;
class ScopedElapsedTimer {
public:
@@ -142,7 +142,7 @@ bool ContentVerifyJob::FinishBlock() {
int block = current_block_++;
- const std::string* expected_hash = NULL;
+ const std::string* expected_hash = nullptr;
if (!hash_reader_->GetHashForBlock(block, &expected_hash) ||
*expected_hash != final)
return false;

Powered by Google App Engine
This is Rietveld 408576698