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

Unified Diff: Source/core/html/HTMLAllCollection.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/HTMLAllCollection.h
diff --git a/Source/core/html/HTMLAllCollection.h b/Source/core/html/HTMLAllCollection.h
index d099253d1bc9b9ae6fc70e5137db9c5e09bd2fa8..300e4ebf32a417aa4c429b93fc411a9381a1dfab 100644
--- a/Source/core/html/HTMLAllCollection.h
+++ b/Source/core/html/HTMLAllCollection.h
@@ -26,6 +26,7 @@
#ifndef HTMLAllCollection_h
#define HTMLAllCollection_h
+#include "bindings/core/v8/Nullable.h"
#include "core/html/HTMLCollection.h"
namespace blink {
@@ -36,7 +37,7 @@ public:
virtual ~HTMLAllCollection();
Element* namedItemWithIndex(const AtomicString& name, unsigned index) const;
- void namedGetter(const AtomicString& name, bool&, RefPtrWillBeRawPtr<NodeList>&, bool&, RefPtrWillBeRawPtr<Element>&);
+ void namedGetter(const AtomicString& name, Nullable<RefPtrWillBeRawPtr<NodeList> >&, Nullable<RefPtrWillBeRawPtr<Element> >&);
private:
explicit HTMLAllCollection(ContainerNode&);

Powered by Google App Engine
This is Rietveld 408576698