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

Unified Diff: lib/observe/observable.dart

Issue 55143003: webui fixes for 0.8.9 (Closed) Base URL: git@github.com:dart-lang/web-ui.git@master
Patch Set: Created 7 years, 2 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
« no previous file with comments | « lib/dwc.dart ('k') | lib/safe_html.dart » ('j') | pubspec.yaml » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/observe/observable.dart
diff --git a/lib/observe/observable.dart b/lib/observe/observable.dart
index d763e19febe324f309ca4c9a70ebcae3f934944d..fbccf8f237be9ffb3ba79cc0b36cc6809c6dc0f4 100644
--- a/lib/observe/observable.dart
+++ b/lib/observe/observable.dart
@@ -18,7 +18,6 @@ import 'dart:async';
import 'dart:collection' hide LinkedList;
import 'list.dart';
import 'map.dart';
-import 'reference.dart';
import 'set.dart';
import 'package:web_ui/src/utils_observe.dart' show hash3, hash4;
import 'package:web_ui/src/linked_list.dart';
@@ -345,7 +344,7 @@ void notifyChange(Observable self, int type, key,
if (_changedObjects == null) {
_changedObjects = [];
- runAsync(deliverChangesSync);
+ scheduleMicrotask(deliverChangesSync);
}
if (self.$_changes == null) {
self.$_changes = [];
« no previous file with comments | « lib/dwc.dart ('k') | lib/safe_html.dart » ('j') | pubspec.yaml » ('J')

Powered by Google App Engine
This is Rietveld 408576698