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

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

Issue 1367523002: [dom] support iterable<> NodeList (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix nits / Don't ship feature by default 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..95683cc7c48528c6ff08631f3c0b1c4422caf25c 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::enableIterableNodeLists(bool enable)
jsbell 2015/10/26 22:53:34 Why is this necessary?
caitp (gmail) 2015/10/26 23:11:46 For procedures like putting something behind a fla
caitp (gmail) 2015/10/27 02:30:58 Anyways, got rid of this stuff
+{
+ RuntimeEnabledFeatures::setIterableNodeListsEnabled(enable);
+}
+
void WebRuntimeFeatures::enableMediaPlayer(bool enable)
{
RuntimeEnabledFeatures::setMediaEnabled(enable);

Powered by Google App Engine
This is Rietveld 408576698