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

Unified Diff: frog/reader.dart

Issue 9537001: Generate dart:html bindings for Dartium as well as Frog. All unittests now pass (or are disabled fo… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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: frog/reader.dart
diff --git a/frog/reader.dart b/frog/reader.dart
index 11d2b1c888f3fdfc02c23052ac36dadf9499d9d3..251316879cf32142f3ac854c353b13181a2aa6b4 100644
--- a/frog/reader.dart
+++ b/frog/reader.dart
@@ -14,9 +14,7 @@ class LibraryReader {
'dart:core': joinPaths(options.libDir, 'corelib.dart'),
'dart:coreimpl': joinPaths(options.libDir, 'corelib_impl.dart'),
'dart:html': joinPaths(options.libDir,
- '../../client/html/release/html.dart'),
- 'dart:htmlimpl': joinPaths(options.libDir,
- '../../client/html/release/htmlimpl.dart'),
+ '../../client/html/frog/html_frog.dart'),
'dart:dom': joinPaths(options.libDir,
'../../client/dom/frog/dom_frog.dart'),
'dart:json': joinPaths(options.libDir, '../../lib/json/json_frog.dart'),
@@ -28,8 +26,7 @@ class LibraryReader {
'dart:core': joinPaths(options.libDir, 'core/core_frog.dart'),
'dart:coreimpl': joinPaths(options.libDir,
'coreimpl/coreimpl_frog.dart'),
- 'dart:html': joinPaths(options.libDir, 'html/html.dart'),
- 'dart:htmlimpl': joinPaths(options.libDir, 'htmlimpl/htmlimpl.dart'),
+ 'dart:html': joinPaths(options.libDir, 'html/frog/html_frog.dart'),
'dart:dom': joinPaths(options.libDir, 'dom/frog/dom_frog.dart'),
'dart:json': joinPaths(options.libDir, 'json/json_frog.dart'),
'dart:isolate': joinPaths(options.libDir, 'isolate/isolate_frog.dart'),

Powered by Google App Engine
This is Rietveld 408576698