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

Unified Diff: third_party/WebKit/Source/build/scripts/make_runtime_features.py

Issue 2247923004: Add IDL parsing of FeaturePolicy extended attribute (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Alphabetize defaults list in make_runtime_features.py Created 4 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
« no previous file with comments | « third_party/WebKit/Source/bindings/scripts/v8_utilities.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/build/scripts/make_runtime_features.py
diff --git a/third_party/WebKit/Source/build/scripts/make_runtime_features.py b/third_party/WebKit/Source/build/scripts/make_runtime_features.py
index 206d147d7930f28256062a1ef81a79711652a02b..068c53d2734dc8a020f7dd4502c3ce593ac80ff9 100755
--- a/third_party/WebKit/Source/build/scripts/make_runtime_features.py
+++ b/third_party/WebKit/Source/build/scripts/make_runtime_features.py
@@ -43,13 +43,14 @@ class RuntimeFeatureWriter(in_generator.Writer):
'status': ['stable', 'experimental', 'test'],
}
defaults = {
- 'origin_trial_feature_name': None,
'condition': None,
- 'implied_by': [],
- 'depends_on': [],
'custom': False,
- 'status': None,
+ 'depends_on': [],
+ 'feature_policy': None,
+ 'implied_by': [],
+ 'origin_trial_feature_name': None,
'settable_from_internals': False,
+ 'status': None,
}
def __init__(self, in_file_path):
« no previous file with comments | « third_party/WebKit/Source/bindings/scripts/v8_utilities.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698