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

Unified Diff: extensions/renderer/console.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/console.cc
diff --git a/extensions/renderer/console.cc b/extensions/renderer/console.cc
index 742910464027eb1f851fa9e21cc03796d38e1e74..469c089d0d22be5ec88544326d8073d2a8ccfc7b 100644
--- a/extensions/renderer/console.cc
+++ b/extensions/renderer/console.cc
@@ -35,7 +35,7 @@ class ByContextFinder : public content::RenderViewVisitor {
private:
explicit ByContextFinder(v8::Handle<v8::Context> context)
- : context_(context), found_(NULL) {}
+ : context_(context), found_(nullptr) {}
virtual bool Visit(content::RenderView* render_view) OVERRIDE {
ExtensionHelper* helper = ExtensionHelper::Get(render_view);

Powered by Google App Engine
This is Rietveld 408576698