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

Unified Diff: extensions/browser/api/declarative/test_rules_registry.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/api/declarative/test_rules_registry.cc
diff --git a/extensions/browser/api/declarative/test_rules_registry.cc b/extensions/browser/api/declarative/test_rules_registry.cc
index 030a22a83a969413e24cebf82be7a4bc8ae0fa92..e79459c2dc83bd3cefc19f2cf0dc41a73cd80a46 100644
--- a/extensions/browser/api/declarative/test_rules_registry.cc
+++ b/extensions/browser/api/declarative/test_rules_registry.cc
@@ -11,11 +11,12 @@ namespace extensions {
TestRulesRegistry::TestRulesRegistry(content::BrowserThread::ID owner_thread,
const std::string& event_name,
const WebViewKey& webview_key)
- : RulesRegistry(NULL /*profile*/,
+ : RulesRegistry(nullptr /*profile*/,
event_name,
owner_thread,
- NULL,
- webview_key) {}
+ nullptr,
+ webview_key) {
+}
TestRulesRegistry::TestRulesRegistry(
content::BrowserContext* browser_context,

Powered by Google App Engine
This is Rietveld 408576698