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

Unified Diff: tool/input_sdk/lib/html/html_common/html_common_ddc.dart

Issue 1700153002: Wrapperless dart:html and friends (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Created 4 years, 10 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 side-by-side diff with in-line comments
Download patch
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 {
Jacob 2016/02/16 17:47:35 delete this file?
+ // FIXME(vsm): Make this final at least. Private?
+ dynamic raw;
+}

Powered by Google App Engine
This is Rietveld 408576698