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

Unified Diff: Source/core/dom/Iterator.idl

Issue 483163003: Introduce ES6 iterator for DOM objects. (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/dom/Iterator.idl
diff --git a/Source/modules/geofencing/GeofencingRegion.idl b/Source/core/dom/Iterator.idl
similarity index 61%
copy from Source/modules/geofencing/GeofencingRegion.idl
copy to Source/core/dom/Iterator.idl
index 4e22058d98b22fb2f0a7d196263ea4b9a458feab..f647be54b57bde8a1fa454231fcd279db23848a7 100644
--- a/Source/modules/geofencing/GeofencingRegion.idl
+++ b/Source/core/dom/Iterator.idl
@@ -3,9 +3,8 @@
// found in the LICENSE file.
[
- RuntimeEnabled=Geofencing,
- NoInterfaceObject,
GarbageCollected,
-] interface GeofencingRegion {
- readonly attribute DOMString id;
+ NoInterfaceObject
arv (Not doing code reviews) 2014/08/20 14:18:38 The iterator prototype also needs a [Symbol.iterat
arv (Not doing code reviews) 2014/08/20 14:18:38 The iterator prototype also needs a [Symbol.iterat
yhirano 2014/08/21 11:55:27 Done.
+] interface Iterator {
+ [CallWith=ScriptState, RaisesException] any next(optional any value);
};

Powered by Google App Engine
This is Rietveld 408576698