| Index: tool/input_sdk/lib/html/html_common/html_common_ddc.dart
|
| diff --git a/tool/input_sdk/lib/html/html_common/html_common_ddc.dart b/tool/input_sdk/lib/html/html_common/html_common_ddc.dart
|
| index 51b9b913781143d387f18feffc605a7d4fb3bed5..6d2f2f87714f0636decbb587090f77439996f10c 100644
|
| --- a/tool/input_sdk/lib/html/html_common/html_common_ddc.dart
|
| +++ b/tool/input_sdk/lib/html/html_common/html_common_ddc.dart
|
| @@ -8,6 +8,7 @@ import 'dart:async';
|
| import 'dart:collection';
|
| import 'dart:html';
|
| import 'dart:_internal' show WhereIterable;
|
| +import 'dart:web_gl' as gl;
|
| import 'dart:typed_data';
|
| import 'dart:_native_typed_data';
|
| import 'dart:_js_helper' show Creates, Returns, convertDartClosureToJS;
|
| @@ -23,3 +24,8 @@ part 'conversions_dart2js.dart';
|
| part 'device.dart';
|
| part 'filtered_element_list.dart';
|
| part 'lists.dart';
|
| +
|
| +class DartHtmlObject {
|
| + // FIXME(vsm): Make this final at least. Private?
|
| + dynamic raw;
|
| +}
|
|
|