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

Unified Diff: Source/core/html/forms/HiddenInputType.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/forms/HiddenInputType.cpp
diff --git a/Source/core/html/forms/HiddenInputType.cpp b/Source/core/html/forms/HiddenInputType.cpp
index f9232104b6deb673f776d803a2f6e8219b658821..12393ce58b8e489c29df1f30c82f79b72c7788c9 100644
--- a/Source/core/html/forms/HiddenInputType.cpp
+++ b/Source/core/html/forms/HiddenInputType.cpp
@@ -75,7 +75,7 @@ bool HiddenInputType::supportsValidation() const
RenderObject* HiddenInputType::createRenderer(RenderStyle*) const
{
ASSERT_NOT_REACHED();
- return 0;
+ return nullptr;
}
void HiddenInputType::accessKeyAction(bool)

Powered by Google App Engine
This is Rietveld 408576698