X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fthird_party%2FWebKit%2FSource%2Fcore%2Fhtml%2FRadioNodeList.cpp;h=3b57208939967fcc1d1239ad822e5343a0a26d59;hb=1afa4dd80ef85af7c90efaea6959db1d92330844;hp=478de82f9b6488a39656040fa12a07ab77ef5d36;hpb=90762837333c13ccf56f2ad88e4481fc71e8d281;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/third_party/WebKit/Source/core/html/RadioNodeList.cpp b/src/third_party/WebKit/Source/core/html/RadioNodeList.cpp index 478de82..3b57208 100644 --- a/src/third_party/WebKit/Source/core/html/RadioNodeList.cpp +++ b/src/third_party/WebKit/Source/core/html/RadioNodeList.cpp @@ -55,10 +55,10 @@ RadioNodeList::~RadioNodeList() static inline HTMLInputElement* toRadioButtonInputElement(Element& element) { if (!isHTMLInputElement(element)) - return 0; + return nullptr; HTMLInputElement& inputElement = toHTMLInputElement(element); if (inputElement.type() != InputTypeNames::radio || inputElement.value().isEmpty()) - return 0; + return nullptr; return &inputElement; }