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

Side by Side Diff: lib/dom/templates/html/dartium/html_dartium.darttemplate

Issue 10828411: Re-apply 'Unify dart:isolate.' with fixes for autogenerated dart2js and dartium html files. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rebased and fixed an error. Created 8 years, 4 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 // DO NOT EDIT 5 // DO NOT EDIT
6 // Auto-generated dart:html library. 6 // Auto-generated dart:html library.
7 7
8 #library("dart:html"); 8 #library("dart:html");
9 9
10 #import("dart:isolate"); 10 #import("dart:isolate");
(...skipping 10 matching lines...) Expand all
21 #source('$AUXILIARY_DIR/_Collections.dart'); 21 #source('$AUXILIARY_DIR/_Collections.dart');
22 #source('$AUXILIARY_DIR/_HttpRequestUtils.dart'); 22 #source('$AUXILIARY_DIR/_HttpRequestUtils.dart');
23 #source('$AUXILIARY_DIR/../../html/src/shared_FactoryProviders.dart'); 23 #source('$AUXILIARY_DIR/../../html/src/shared_FactoryProviders.dart');
24 #source('$AUXILIARY_DIR/../../html/src/dartium_FactoryProviders.dart'); 24 #source('$AUXILIARY_DIR/../../html/src/dartium_FactoryProviders.dart');
25 #source('$AUXILIARY_DIR/../../html/src/Isolates.dart'); 25 #source('$AUXILIARY_DIR/../../html/src/Isolates.dart');
26 #source('$AUXILIARY_DIR/../../html/src/Measurement.dart'); 26 #source('$AUXILIARY_DIR/../../html/src/Measurement.dart');
27 #source('$AUXILIARY_DIR/../../html/src/Device.dart'); 27 #source('$AUXILIARY_DIR/../../html/src/Device.dart');
28 #source('$AUXILIARY_DIR/../../html/src/_Testing.dart'); 28 #source('$AUXILIARY_DIR/../../html/src/_Testing.dart');
29 #source('$AUXILIARY_DIR/_ListIterators.dart'); 29 #source('$AUXILIARY_DIR/_ListIterators.dart');
30 #source('$AUXILIARY_DIR/_Lists.dart'); 30 #source('$AUXILIARY_DIR/_Lists.dart');
31 #source('$AUXILIARY_DIR/../../isolate/serialization.dart'); 31 #source('$AUXILIARY_DIR/../../js_isolate_impl/isolate.dart");
Anton Muhin 2012/08/21 17:30:45 please, terminating single quote.
32 32
33 #source('$AUXILIARY_DIR/native_DOMPublic.dart'); 33 #source('$AUXILIARY_DIR/native_DOMPublic.dart');
34 #source('$AUXILIARY_DIR/native_DOMImplementation.dart'); 34 #source('$AUXILIARY_DIR/native_DOMImplementation.dart');
35 35
36 Window __window; 36 Window __window;
37 37
38 Window get window() { 38 Window get window() {
39 if (__window !== null) { 39 if (__window !== null) {
40 return __window; 40 return __window;
41 } 41 }
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 _callPortLastResult = JSON.parse(event.data); 77 _callPortLastResult = JSON.parse(event.data);
78 }, false); 78 }, false);
79 _callPortInitialized = true; 79 _callPortInitialized = true;
80 } 80 }
81 assert(_callPortLastResult == null); 81 assert(_callPortLastResult == null);
82 _dispatchEvent('js-sync-message', {'id': id, 'message': message}); 82 _dispatchEvent('js-sync-message', {'id': id, 'message': message});
83 var result = _callPortLastResult; 83 var result = _callPortLastResult;
84 _callPortLastResult = null; 84 _callPortLastResult = null;
85 return result; 85 return result;
86 } 86 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698