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

Unified Diff: Source/core/html/HTMLAreaElement.cpp

Issue 656723005: Use C++11 features in core/html (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: use nullptr 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
Index: Source/core/html/HTMLAreaElement.cpp
diff --git a/Source/core/html/HTMLAreaElement.cpp b/Source/core/html/HTMLAreaElement.cpp
index bda804bdca8e1c4d3feb0c7e8e43789b81c0f900..e87eb8901e21628e8f8aa77ece2de6717a66297a 100644
--- a/Source/core/html/HTMLAreaElement.cpp
+++ b/Source/core/html/HTMLAreaElement.cpp
@@ -176,7 +176,7 @@ HTMLImageElement* HTMLAreaElement::imageElement() const
{
if (HTMLMapElement* mapElement = Traversal<HTMLMapElement>::firstAncestor(*this))
return mapElement->imageElement();
- return 0;
+ return nullptr;
}
bool HTMLAreaElement::isKeyboardFocusable() const

Powered by Google App Engine
This is Rietveld 408576698