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

Unified Diff: lib/html/dartium/html_dartium.dart

Side-by-side diff isn't available for this file because of its large size.
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:
Download patch
« no previous file with comments | « lib/dom/frog/dom_frog.dart ('k') | lib/html/frog/html_frog.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/html/dartium/html_dartium.dart
diff --git a/lib/html/dartium/html_dartium.dart b/lib/html/dartium/html_dartium.dart
index 829451f12d167ec1869380f56508c322eac021ec..2f385f3003c68e8aa3fb09f5f44b75b9dd353393 100644
--- a/lib/html/dartium/html_dartium.dart
+++ b/lib/html/dartium/html_dartium.dart
@@ -6218,6 +6218,16 @@ class _DataTransferItemImpl extends _DOMTypeBase implements DataTransferItem {
return;
}
}
+
+ void webkitGetAsEntry([EntryCallback callback = null]) {
+ if (callback === null) {
+ _ptr.webkitGetAsEntry();
+ return;
+ } else {
+ _ptr.webkitGetAsEntry(_unwrap(callback));
+ return;
+ }
+ }
}
class _DataTransferItemListImpl extends _DOMTypeBase implements DataTransferItemList {
@@ -20797,6 +20807,10 @@ class _WebKitMutationObserverImpl extends _DOMTypeBase implements WebKitMutation
_ptr.disconnect();
return;
}
+
+ List<MutationRecord> takeRecords() {
+ return _wrap(_ptr.takeRecords());
+ }
}
class _WebKitNamedFlowImpl extends _DOMTypeBase implements WebKitNamedFlow {
@@ -21281,8 +21295,8 @@ class _WindowImpl extends _EventTargetImpl implements Window {
}
}
- int webkitRequestAnimationFrame(RequestAnimationFrameCallback callback, Element element) {
- return _wrap(_ptr.webkitRequestAnimationFrame(_unwrap(callback), _unwrap(element)));
+ int webkitRequestAnimationFrame(RequestAnimationFrameCallback callback) {
+ return _wrap(_ptr.webkitRequestAnimationFrame(_unwrap(callback)));
}
void webkitRequestFileSystem(int type, int size, FileSystemCallback successCallback, [ErrorCallback errorCallback = null]) {
@@ -26130,6 +26144,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
@@ -35847,6 +35863,8 @@ interface WebKitCSSRegionRule extends CSSRule {
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
@@ -36166,7 +36184,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]);
« no previous file with comments | « lib/dom/frog/dom_frog.dart ('k') | lib/html/frog/html_frog.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698