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

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

Issue 466323002: IDL: Use Nullable for union type return value (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 months 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/HTMLFormElement.h
diff --git a/Source/core/html/HTMLFormElement.h b/Source/core/html/HTMLFormElement.h
index e4bf3838a1ea693dd1a5ed08136100ddf63eac96..2bafd20958a1cfd97741b32e026edb2ab6319d56 100644
--- a/Source/core/html/HTMLFormElement.h
+++ b/Source/core/html/HTMLFormElement.h
@@ -24,6 +24,7 @@
#ifndef HTMLFormElement_h
#define HTMLFormElement_h
+#include "bindings/core/v8/Nullable.h"
#include "core/html/HTMLElement.h"
#include "core/html/HTMLFormControlElement.h"
#include "core/html/forms/RadioButtonGroupScope.h"
@@ -117,7 +118,7 @@ public:
const FormAssociatedElement::List& associatedElements() const;
const WillBeHeapVector<RawPtrWillBeMember<HTMLImageElement> >& imageElements();
- void anonymousNamedGetter(const AtomicString& name, bool&, RefPtrWillBeRawPtr<RadioNodeList>&, bool&, RefPtrWillBeRawPtr<Element>&);
+ void anonymousNamedGetter(const AtomicString& name, Nullable<RefPtrWillBeRawPtr<RadioNodeList> >&, Nullable<RefPtrWillBeRawPtr<Element> >&);
private:
explicit HTMLFormElement(Document&);

Powered by Google App Engine
This is Rietveld 408576698