| Index: lib/dom/dom.dart
|
| diff --git a/lib/dom/dom.dart b/lib/dom/dom.dart
|
| index 78b753d5a8389cec675b1964935761f25c8d17ec..2872286d428bf9136fb63b87bcbd18a1404e5756 100644
|
| --- a/lib/dom/dom.dart
|
| +++ b/lib/dom/dom.dart
|
| @@ -1863,7 +1863,7 @@ interface Window extends EventTarget {
|
|
|
| void webkitPostMessage(Dynamic message, String targetOrigin, [List transferList]);
|
|
|
| - int webkitRequestAnimationFrame(RequestAnimationFrameCallback callback, Element element);
|
| + int webkitRequestAnimationFrame(RequestAnimationFrameCallback callback);
|
|
|
| void webkitRequestFileSystem(int type, int size, FileSystemCallback successCallback, [ErrorCallback errorCallback]);
|
|
|
| @@ -1891,6 +1891,8 @@ interface DataTransferItem {
|
| Blob getAsFile();
|
|
|
| void getAsString([StringCallback callback]);
|
| +
|
| + void webkitGetAsEntry([EntryCallback callback]);
|
| }
|
| // 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
|
| @@ -10134,6 +10136,13 @@ interface TimeRanges {
|
|
|
| num start(int index);
|
| }
|
| +// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
|
| +// for details. All rights reserved. Use of this source code is governed by a
|
| +// BSD-style license that can be found in the LICENSE file.
|
| +
|
| +// WARNING: Do not edit - generated code.
|
| +
|
| +typedef void TimeoutHandler();
|
| // 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
|
| // BSD-style license that can be found in the LICENSE file.
|
| @@ -11712,6 +11721,8 @@ interface WebKitCSSTransformValue extends CSSValueList {
|
| interface WebKitMutationObserver {
|
|
|
| void disconnect();
|
| +
|
| + List<MutationRecord> takeRecords();
|
| }
|
| // 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
|
| @@ -12777,11 +12788,6 @@ interface ReadyState {
|
| */
|
| static final String COMPLETE = "complete";
|
| }
|
| -// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
|
| -// for details. All rights reserved. Use of this source code is governed by a
|
| -// BSD-style license that can be found in the LICENSE file.
|
| -
|
| -typedef void TimeoutHandler();
|
| // 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
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|