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

Unified Diff: dart/tools/dom/templates/html/dartium/html_dartium.darttemplate

Issue 57393002: Version 0.8.10.2 (Closed) Base URL: http://dart.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 1 month 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: dart/tools/dom/templates/html/dartium/html_dartium.darttemplate
===================================================================
--- dart/tools/dom/templates/html/dartium/html_dartium.darttemplate (revision 29787)
+++ dart/tools/dom/templates/html/dartium/html_dartium.darttemplate (working copy)
@@ -66,14 +66,12 @@
part '$AUXILIARY_DIR/EventStreamProvider.dart';
part '$AUXILIARY_DIR/Html5NodeValidator.dart';
part '$AUXILIARY_DIR/ImmutableListMixin.dart';
-part '$AUXILIARY_DIR/Isolates.dart';
part '$AUXILIARY_DIR/KeyCode.dart';
part '$AUXILIARY_DIR/KeyLocation.dart';
part '$AUXILIARY_DIR/KeyName.dart';
part '$AUXILIARY_DIR/KeyboardEventStream.dart';
part '$AUXILIARY_DIR/NodeValidatorBuilder.dart';
part '$AUXILIARY_DIR/ReadyState.dart';
-part '$AUXILIARY_DIR/Serialization.dart';
part '$AUXILIARY_DIR/Validators.dart';
part '$AUXILIARY_DIR/WrappedList.dart';
part '$AUXILIARY_DIR/_HttpRequestUtils.dart';
@@ -119,22 +117,3 @@
_document = window.document;
return _document;
}
-
-int _getNewIsolateId() => _Utils._getNewIsolateId();
-
-bool _callPortInitialized = false;
-var _callPortLastResult = null;
-
-_callPortSync(num id, var message) {
- if (!_callPortInitialized) {
- window.on['js-result'].listen((event) {
- _callPortLastResult = JSON.decode(_getPortSyncEventData(event));
- });
- _callPortInitialized = true;
- }
- assert(_callPortLastResult == null);
- _dispatchEvent('js-sync-message', {'id': id, 'message': message});
- var result = _callPortLastResult;
- _callPortLastResult = null;
- return result;
-}

Powered by Google App Engine
This is Rietveld 408576698