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

Unified Diff: third_party/WebKit/Source/core/dom/NodeList.h

Issue 2683853005: bindings: Make some value iterator properties aliases to Array.prototype functions (Closed)
Patch Set: Remove constexpr from Internals.h to fix the Android build Created 3 years, 10 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: third_party/WebKit/Source/core/dom/NodeList.h
diff --git a/third_party/WebKit/Source/core/dom/NodeList.h b/third_party/WebKit/Source/core/dom/NodeList.h
index e10936c116a8efc92cf77a0f3865aad3ae2c330e..6ce756a32231cb4eb2c383c711e263fbb078403f 100644
--- a/third_party/WebKit/Source/core/dom/NodeList.h
+++ b/third_party/WebKit/Source/core/dom/NodeList.h
@@ -24,7 +24,6 @@
#ifndef NodeList_h
#define NodeList_h
-#include "bindings/core/v8/Iterable.h"
#include "bindings/core/v8/ScriptWrappable.h"
#include "core/CoreExport.h"
@@ -33,8 +32,7 @@ namespace blink {
class Node;
class CORE_EXPORT NodeList : public GarbageCollectedFinalized<NodeList>,
- public ScriptWrappable,
- public ValueIterable<Node *> {
+ public ScriptWrappable {
DEFINE_WRAPPERTYPEINFO();
public:
@@ -54,9 +52,6 @@ class CORE_EXPORT NodeList : public GarbageCollectedFinalized<NodeList>,
protected:
NodeList() {}
-
- private:
- IterationSource* startIteration(ScriptState*, ExceptionState&) override;
};
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/core/dom/DOMTokenList.cpp ('k') | third_party/WebKit/Source/core/dom/NodeList.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698