 Chromium Code Reviews
 Chromium Code Reviews Issue 1017183003:
  Make DOMTypedArray exported.  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/blink.git@master
    
  
    Issue 1017183003:
  Make DOMTypedArray exported.  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/blink.git@master| Index: Source/bindings/templates/interface_base.cpp | 
| diff --git a/Source/bindings/templates/interface_base.cpp b/Source/bindings/templates/interface_base.cpp | 
| index b622ef728e2f2bc503806c1e4012291fa8886220..45ccfb4fb41ef6e00e52c989f00c9495f1f222d5 100644 | 
| --- a/Source/bindings/templates/interface_base.cpp | 
| +++ b/Source/bindings/templates/interface_base.cpp | 
| @@ -30,10 +30,9 @@ namespace blink { | 
| // This static member must be declared by DEFINE_WRAPPERTYPEINFO in {{cpp_class}}.h. | 
| // For details, see the comment of DEFINE_WRAPPERTYPEINFO in | 
| // bindings/core/v8/ScriptWrappable.h. | 
| -{% if is_typed_array_type %} | 
| -template<> | 
| -{% endif %} | 
| +{% if not is_typed_array_type %} | 
| const WrapperTypeInfo& {{cpp_class}}::s_wrapperTypeInfo = {{v8_class}}::wrapperTypeInfo; | 
| 
tasak
2015/03/24 10:15:30
The code is removed because DOMTypedArray doesn't
 | 
| +{% endif %} | 
| {% endif %} | 
| {% if not is_array_buffer_or_view %} |