| Index: sdk/lib/html/dart2js/html_dart2js.dart
|
| diff --git a/sdk/lib/html/dart2js/html_dart2js.dart b/sdk/lib/html/dart2js/html_dart2js.dart
|
| index 1a6bd00ec1044116a870397bc14df99668925e12..5a4cfa92c611aa5e6faddd945ad3e4720a751744 100644
|
| --- a/sdk/lib/html/dart2js/html_dart2js.dart
|
| +++ b/sdk/lib/html/dart2js/html_dart2js.dart
|
| @@ -56,7 +56,7 @@ import 'dart:_js_helper' show
|
| makeLeafDispatchRecord;
|
| import 'dart:_interceptors' show
|
| Interceptor, JSExtendableArray, findInterceptorConstructorForType,
|
| - findConstructorForWebComponentType, getNativeInterceptor,
|
| + findConstructorForNativeSubclassType, getNativeInterceptor,
|
| setDispatchProperty, findInterceptorForType;
|
|
|
| export 'dart:math' show Rectangle, Point;
|
| @@ -32871,7 +32871,7 @@ void _registerCustomElement(context, document, String tag, Type type,
|
| throw new ArgumentError(type);
|
| }
|
|
|
| - var constructor = findConstructorForWebComponentType(type, 'created');
|
| + var constructor = findConstructorForNativeSubclassType(type, 'created');
|
| if (constructor == null) {
|
| throw new ArgumentError("$type has no constructor called 'created'");
|
| }
|
|
|