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

Unified Diff: lib/dom/frog/dom_frog.dart

Issue 10048001: Roll IDL to multivm@375 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 8 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/dom/dom.dart ('k') | lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/dom/frog/dom_frog.dart
diff --git a/lib/dom/frog/dom_frog.dart b/lib/dom/frog/dom_frog.dart
index 62df8460cc4e05a16e833821ef55e38ace2f376e..39e14805f1feb9570446b88a8174767eb848e42a 100644
--- a/lib/dom/frog/dom_frog.dart
+++ b/lib/dom/frog/dom_frog.dart
@@ -1396,7 +1396,7 @@ class _DOMWindowJs extends _EventTargetJs implements DOMWindow native "@*DOMWind
void webkitPostMessage(Dynamic message, String targetOrigin, [List transferList = null]) native;
- int webkitRequestAnimationFrame(RequestAnimationFrameCallback callback, _ElementJs element) native;
+ int webkitRequestAnimationFrame(RequestAnimationFrameCallback callback) native;
void webkitRequestFileSystem(int type, int size, FileSystemCallback successCallback, [ErrorCallback errorCallback = null]) native;
@@ -1418,6 +1418,8 @@ class _DataTransferItemJs extends _DOMTypeJs implements DataTransferItem native
_BlobJs getAsFile() native;
void getAsString([StringCallback callback = null]) native;
+
+ void webkitGetAsEntry([EntryCallback callback = null]) native;
}
class _DataTransferItemListJs extends _DOMTypeJs implements DataTransferItemList native "*DataTransferItemList" {
@@ -11496,6 +11498,8 @@ class _WebKitCSSTransformValueJs extends _CSSValueListJs implements WebKitCSSTra
class _WebKitMutationObserverJs extends _DOMTypeJs implements WebKitMutationObserver native "*WebKitMutationObserver" {
void disconnect() native;
+
+ List<MutationRecord> takeRecords() native;
}
class _WebKitNamedFlowJs extends _DOMTypeJs implements WebKitNamedFlow native "*WebKitNamedFlow" {
@@ -13772,7 +13776,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]);
@@ -13800,6 +13804,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
@@ -23628,6 +23634,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
« no previous file with comments | « lib/dom/dom.dart ('k') | lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698