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

Unified Diff: extensions/renderer/i18n_custom_bindings.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/renderer/i18n_custom_bindings.cc
diff --git a/extensions/renderer/i18n_custom_bindings.cc b/extensions/renderer/i18n_custom_bindings.cc
index 9e99e1376d4fc88b616cfb1c1472e65bf07f7f21..17fe241272d379ec1f97ea5d7eb17e4ca8cd44d4 100644
--- a/extensions/renderer/i18n_custom_bindings.cc
+++ b/extensions/renderer/i18n_custom_bindings.cc
@@ -84,7 +84,7 @@ void I18NCustomBindings::GetL10nMessage(
args.GetReturnValue().Set(v8::String::NewFromUtf8(
isolate,
- ReplaceStringPlaceholders(message, substitutions, NULL).c_str()));
+ ReplaceStringPlaceholders(message, substitutions, nullptr).c_str()));
}
void I18NCustomBindings::GetL10nUILanguage(

Powered by Google App Engine
This is Rietveld 408576698