OLD | NEW |
1 # Copyright (C) 2013 Google Inc. All rights reserved. | 1 # Copyright (C) 2013 Google Inc. All rights reserved. |
2 # | 2 # |
3 # Redistribution and use in source and binary forms, with or without | 3 # Redistribution and use in source and binary forms, with or without |
4 # modification, are permitted provided that the following conditions are | 4 # modification, are permitted provided that the following conditions are |
5 # met: | 5 # met: |
6 # | 6 # |
7 # * Redistributions of source code must retain the above copyright | 7 # * Redistributions of source code must retain the above copyright |
8 # notice, this list of conditions and the following disclaimer. | 8 # notice, this list of conditions and the following disclaimer. |
9 # * Redistributions in binary form must reproduce the above | 9 # * Redistributions in binary form must reproduce the above |
10 # copyright notice, this list of conditions and the following disclaimer | 10 # copyright notice, this list of conditions and the following disclaimer |
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
172 return False | 172 return False |
173 | 173 |
174 | 174 |
175 # [CallWith] | 175 # [CallWith] |
176 CALL_WITH_ARGUMENTS = { | 176 CALL_WITH_ARGUMENTS = { |
177 'ScriptState': 'scriptState', | 177 'ScriptState': 'scriptState', |
178 'ExecutionContext': 'executionContext', | 178 'ExecutionContext': 'executionContext', |
179 'ScriptArguments': 'scriptArguments.release()', | 179 'ScriptArguments': 'scriptArguments.release()', |
180 'ActiveWindow': 'callingDOMWindow(info.GetIsolate())', | 180 'ActiveWindow': 'callingDOMWindow(info.GetIsolate())', |
181 'FirstWindow': 'enteredDOMWindow(info.GetIsolate())', | 181 'FirstWindow': 'enteredDOMWindow(info.GetIsolate())', |
182 'Document': 'document', | |
183 } | 182 } |
184 # List because key order matters, as we want arguments in deterministic order | 183 # List because key order matters, as we want arguments in deterministic order |
185 CALL_WITH_VALUES = [ | 184 CALL_WITH_VALUES = [ |
186 'ScriptState', | 185 'ScriptState', |
187 'ExecutionContext', | 186 'ExecutionContext', |
188 'ScriptArguments', | 187 'ScriptArguments', |
189 'ActiveWindow', | 188 'ActiveWindow', |
190 'FirstWindow', | 189 'FirstWindow', |
191 'Document', | |
192 ] | 190 ] |
193 | 191 |
194 | 192 |
195 def call_with_arguments(call_with_values): | 193 def call_with_arguments(call_with_values): |
196 if not call_with_values: | 194 if not call_with_values: |
197 return [] | 195 return [] |
198 return [CALL_WITH_ARGUMENTS[value] | 196 return [CALL_WITH_ARGUMENTS[value] |
199 for value in CALL_WITH_VALUES | 197 for value in CALL_WITH_VALUES |
200 if extended_attribute_value_contains(call_with_values, value)] | 198 if extended_attribute_value_contains(call_with_values, value)] |
201 | 199 |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
265 | 263 |
266 The returned function checks if a method/attribute is enabled. | 264 The returned function checks if a method/attribute is enabled. |
267 Given extended attribute RuntimeEnabled=FeatureName, return: | 265 Given extended attribute RuntimeEnabled=FeatureName, return: |
268 RuntimeEnabledFeatures::{featureName}Enabled | 266 RuntimeEnabledFeatures::{featureName}Enabled |
269 """ | 267 """ |
270 extended_attributes = definition_or_member.extended_attributes | 268 extended_attributes = definition_or_member.extended_attributes |
271 if 'RuntimeEnabled' not in extended_attributes: | 269 if 'RuntimeEnabled' not in extended_attributes: |
272 return None | 270 return None |
273 feature_name = extended_attributes['RuntimeEnabled'] | 271 feature_name = extended_attributes['RuntimeEnabled'] |
274 return 'RuntimeEnabledFeatures::%sEnabled' % uncapitalize(feature_name) | 272 return 'RuntimeEnabledFeatures::%sEnabled' % uncapitalize(feature_name) |
OLD | NEW |