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

Unified Diff: Source/core/html/URLRegistry.h

Issue 656723005: Use C++11 features in core/html (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: mike's comments Created 6 years, 1 month 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 | « Source/core/html/RadioNodeList.cpp ('k') | Source/core/html/canvas/CanvasRenderingContext.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/URLRegistry.h
diff --git a/Source/core/html/URLRegistry.h b/Source/core/html/URLRegistry.h
index 31a1605c67a0448d2a6f14c01d53baa59704e112..0e655c60dfdf834a21ceb8b5da5b2c513b4ec3ba 100644
--- a/Source/core/html/URLRegistry.h
+++ b/Source/core/html/URLRegistry.h
@@ -53,7 +53,7 @@ public:
virtual void unregisterURL(const KURL&) = 0;
// These are optional APIs
- virtual URLRegistrable* lookup(const String&) { ASSERT_NOT_REACHED(); return 0; }
+ virtual URLRegistrable* lookup(const String&) { ASSERT_NOT_REACHED(); return nullptr; }
virtual bool contains(const String&) { ASSERT_NOT_REACHED(); return false; }
};
« no previous file with comments | « Source/core/html/RadioNodeList.cpp ('k') | Source/core/html/canvas/CanvasRenderingContext.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698