| Index: lib/html/dart2js/html_dart2js.dart
|
| diff --git a/lib/html/dart2js/html_dart2js.dart b/lib/html/dart2js/html_dart2js.dart
|
| index 0e1615a9aa39f829717e9405afe2e060ae01448b..5f30a82a87821f8d070051065a1ee63652109026 100644
|
| --- a/lib/html/dart2js/html_dart2js.dart
|
| +++ b/lib/html/dart2js/html_dart2js.dart
|
| @@ -20621,14 +20621,14 @@ abstract class MutationObserver {
|
| List<MutationRecord> takeRecords();
|
|
|
| void observe(Node target,
|
| - [Map options,
|
| + {Map options,
|
| bool childList,
|
| bool attributes,
|
| bool characterData,
|
| bool subtree,
|
| bool attributeOldValue,
|
| bool characterDataOldValue,
|
| - List<String> attributeFilter]);
|
| + List<String> attributeFilter});
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| @@ -20648,14 +20648,14 @@ class _MutationObserverImpl implements MutationObserver native "*MutationObserve
|
| List<MutationRecord> takeRecords() native;
|
|
|
| void observe(Node target,
|
| - [Map options,
|
| + {Map options,
|
| bool childList,
|
| bool attributes,
|
| bool characterData,
|
| bool subtree,
|
| bool attributeOldValue,
|
| bool characterDataOldValue,
|
| - List<String> attributeFilter]) {
|
| + List<String> attributeFilter}) {
|
|
|
| // Parse options into map of known type.
|
| var parsedOptions = _createDict();
|
| @@ -39223,7 +39223,7 @@ class _MutationObserverScheduler extends _MeasurementScheduler {
|
| // so we just make a dummy event and listen for that.
|
| _observer = new MutationObserver(this._handleMutation);
|
| _dummy = new DivElement();
|
| - _observer.observe(_dummy, {}, attributes: true);
|
| + _observer.observe(_dummy, attributes: true);
|
| }
|
|
|
| void _schedule() {
|
|
|