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

Unified Diff: sdk/lib/html/dartium/html_dartium.dart

Side-by-side diff isn't available for this file because of its large size.
Issue 286773002: Add builtin types to the blink type map (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 7 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:
Download patch
« no previous file with comments | « no previous file | tools/dom/templates/html/dartium/html_dartium.darttemplate » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/html/dartium/html_dartium.dart
diff --git a/sdk/lib/html/dartium/html_dartium.dart b/sdk/lib/html/dartium/html_dartium.dart
index 54fcf5e474668dbe81557ee265ae2a6a60b4565e..c864aa36bb52ccd95b48fbd0e0bb646fea88fa73 100644
--- a/sdk/lib/html/dartium/html_dartium.dart
+++ b/sdk/lib/html/dartium/html_dartium.dart
@@ -30,6 +30,7 @@ import 'dart:_internal' hide Symbol, deprecated;
import 'dart:html_common';
import 'dart:indexed_db';
import 'dart:isolate';
+import 'dart:js' as js;
import "dart:convert";
import 'dart:math';
import 'dart:mirrors';
@@ -110,6 +111,14 @@ Future<Isolate> spawnDomUri(Uri uri, List<String> args, message) {
}
// FIXME: Can we make this private?
const htmlBlinkMap = const {
+ '_HistoryCrossFrame': _HistoryCrossFrame,
+ '_LocationCrossFrame': _LocationCrossFrame,
+ '_DOMWindowCrossFrame': _DOMWindowCrossFrame,
+ // FIXME: Move these to better locations.
+ 'DateTime': DateTime,
+ 'JsObject': js.JsObject,
+ 'JsFunction': js.JsFunction,
+ 'JsArray': js.JsArray,
'AbstractWorker': AbstractWorker,
'Algorithm': Algorithm,
'Animation': Animation,
« no previous file with comments | « no previous file | tools/dom/templates/html/dartium/html_dartium.darttemplate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698