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

Unified Diff: third_party/WebKit/Source/web/WebRuntimeFeatures.cpp

Issue 1381413003: [bindings] add support for integer-indexed @@iterator (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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/web/WebRuntimeFeatures.cpp
diff --git a/third_party/WebKit/Source/web/WebRuntimeFeatures.cpp b/third_party/WebKit/Source/web/WebRuntimeFeatures.cpp
index 8b5611c9a1ffcdd2882a1eab6ad796da9b8bd04b..3d60a0a96c8aa169653d2b6bafb0ee3a6111337c 100644
--- a/third_party/WebKit/Source/web/WebRuntimeFeatures.cpp
+++ b/third_party/WebKit/Source/web/WebRuntimeFeatures.cpp
@@ -149,6 +149,11 @@ void WebRuntimeFeatures::enableImageColorProfiles(bool enable)
RuntimeEnabledFeatures::setImageColorProfilesEnabled(enable);
}
+void WebRuntimeFeatures::enableIterableCollections(bool enable)
+{
+ RuntimeEnabledFeatures::setIterableCollectionsEnabled(enable);
+}
+
void WebRuntimeFeatures::enableMediaPlayer(bool enable)
{
RuntimeEnabledFeatures::setMediaEnabled(enable);

Powered by Google App Engine
This is Rietveld 408576698