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

Side by Side Diff: Source/bindings/scripts/v8_interface.py

Issue 1097773004: Sharing of SharedArrayBuffer via PostMessage transfer (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: . Created 5 years, 6 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 unified diff | Download patch
OLDNEW
1 # Copyright (C) 2013 Google Inc. All rights reserved. 1 # Copyright (C) 2013 Google Inc. All rights reserved.
2 # coding=utf-8 2 # coding=utf-8
3 # 3 #
4 # Redistribution and use in source and binary forms, with or without 4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions are 5 # modification, are permitted provided that the following conditions are
6 # met: 6 # met:
7 # 7 #
8 # * Redistributions of source code must retain the above copyright 8 # * Redistributions of source code must retain the above copyright
9 # notice, this list of conditions and the following disclaimer. 9 # notice, this list of conditions and the following disclaimer.
10 # * Redistributions in binary form must reproduce the above 10 # * Redistributions in binary form must reproduce the above
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 else: 88 else:
89 parent_interface = interface.parent 89 parent_interface = interface.parent
90 if parent_interface: 90 if parent_interface:
91 header_includes.update(v8_types.includes_for_interface(parent_interf ace)) 91 header_includes.update(v8_types.includes_for_interface(parent_interf ace))
92 is_event_target = inherits_interface(interface.name, 'EventTarget') 92 is_event_target = inherits_interface(interface.name, 'EventTarget')
93 93
94 extended_attributes = interface.extended_attributes 94 extended_attributes = interface.extended_attributes
95 95
96 is_array_buffer_or_view = interface.idl_type.is_array_buffer_or_view 96 is_array_buffer_or_view = interface.idl_type.is_array_buffer_or_view
97 is_typed_array_type = interface.idl_type.is_typed_array 97 is_typed_array_type = interface.idl_type.is_typed_array
98 if interface.name == 'SharedArrayBuffer':
haraken 2015/06/11 05:59:28 I'm not really happy about hard-coding a interface
99 includes.add('bindings/core/v8/V8SharedArrayBuffer.h')
98 if is_array_buffer_or_view: 100 if is_array_buffer_or_view:
99 includes.add('bindings/core/v8/V8ArrayBuffer.h') 101 includes.update(('bindings/core/v8/V8ArrayBuffer.h',
102 'bindings/core/v8/V8SharedArrayBuffer.h'))
100 if interface.name == 'ArrayBuffer': 103 if interface.name == 'ArrayBuffer':
101 includes.add('core/dom/DOMArrayBufferDeallocationObserver.h') 104 includes.add('core/dom/DOMArrayBufferDeallocationObserver.h')
102 if interface.name == 'ArrayBufferView': 105 if interface.name == 'ArrayBufferView':
103 includes.update(( 106 includes.update((
104 'bindings/core/v8/V8Int8Array.h', 107 'bindings/core/v8/V8Int8Array.h',
105 'bindings/core/v8/V8Int16Array.h', 108 'bindings/core/v8/V8Int16Array.h',
106 'bindings/core/v8/V8Int32Array.h', 109 'bindings/core/v8/V8Int32Array.h',
107 'bindings/core/v8/V8Uint8Array.h', 110 'bindings/core/v8/V8Uint8Array.h',
108 'bindings/core/v8/V8Uint8ClampedArray.h', 111 'bindings/core/v8/V8Uint8ClampedArray.h',
109 'bindings/core/v8/V8Uint16Array.h', 112 'bindings/core/v8/V8Uint16Array.h',
(...skipping 1248 matching lines...) Expand 10 before | Expand all | Expand 10 after
1358 1361
1359 extended_attributes = deleter.extended_attributes 1362 extended_attributes = deleter.extended_attributes
1360 idl_type = deleter.idl_type 1363 idl_type = deleter.idl_type
1361 is_call_with_script_state = v8_utilities.has_extended_attribute_value(delete r, 'CallWith', 'ScriptState') 1364 is_call_with_script_state = v8_utilities.has_extended_attribute_value(delete r, 'CallWith', 'ScriptState')
1362 return { 1365 return {
1363 'is_call_with_script_state': is_call_with_script_state, 1366 'is_call_with_script_state': is_call_with_script_state,
1364 'is_custom': 'Custom' in extended_attributes, 1367 'is_custom': 'Custom' in extended_attributes,
1365 'is_raises_exception': 'RaisesException' in extended_attributes, 1368 'is_raises_exception': 'RaisesException' in extended_attributes,
1366 'name': cpp_name(deleter), 1369 'name': cpp_name(deleter),
1367 } 1370 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698