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

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

Issue 1528613004: First cut of mini dart:html. (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Fix build_sdk Created 5 years 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.dart
diff --git a/tool/input_sdk/lib/html/html_common/html_common.dart b/tool/input_sdk/lib/html/html_common/html_common.dart
new file mode 100644
index 0000000000000000000000000000000000000000..48cc5b75515f8fc5b5afd5c409bbcb08d1cd72ff
--- /dev/null
+++ b/tool/input_sdk/lib/html/html_common/html_common.dart
@@ -0,0 +1,24 @@
+
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+library dart.dom.html_common;
+
+import 'dart:async';
+import 'dart:collection';
+import 'dart:html';
+import 'dart:js' as js;
+import 'dart:_internal' show WhereIterable;
+import 'dart:nativewrappers';
+import 'dart:typed_data';
+import 'dart:web_gl' as gl;
+
+import 'metadata.dart';
+export 'metadata.dart';
+
+part 'css_class_set.dart';
+part 'device.dart';
+part 'filtered_element_list.dart';
+part 'lists.dart';
+part 'conversions.dart';
+part 'conversions_dartium.dart';

Powered by Google App Engine
This is Rietveld 408576698