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

Unified Diff: Source/core/html/HTMLAppletElement.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/HTMLAppletElement.cpp
diff --git a/Source/core/html/HTMLAppletElement.cpp b/Source/core/html/HTMLAppletElement.cpp
index 53ed03d7854ae554de0b4f3745d15a0f79bbd137..c77b7548aa563d246432f726b34f166e0ebece10 100644
--- a/Source/core/html/HTMLAppletElement.cpp
+++ b/Source/core/html/HTMLAppletElement.cpp
@@ -104,7 +104,7 @@ RenderObject* HTMLAppletElement::createRenderer(RenderStyle* style)
RenderPart* HTMLAppletElement::renderPartForJSBindings() const
{
if (!canEmbedJava())
- return 0;
+ return nullptr;
return HTMLPlugInElement::renderPartForJSBindings();
}

Powered by Google App Engine
This is Rietveld 408576698