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

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

Issue 9466036: Fix parsing of DOMString[] in IDL (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 10 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 | « no previous file | client/dom/generated/src/frog/Clipboard.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/dom/frog/dom_frog.dart
diff --git a/client/dom/frog/dom_frog.dart b/client/dom/frog/dom_frog.dart
index bd36ecb4a3d90ea7dd70628ae833662a97418fb7..2a4ba1c14d6568b3318594c90893e6a78f96fc97 100644
--- a/client/dom/frog/dom_frog.dart
+++ b/client/dom/frog/dom_frog.dart
@@ -795,8 +795,6 @@ class _ClipboardJs extends _DOMTypeJs implements Clipboard native "*Clipboard" {
final _DataTransferItemListJs items;
- final List types;
-
void clearData([String type = null]) native;
void getData(String type) native;
@@ -2827,6 +2825,8 @@ class _HTMLElementJs extends _ElementJs implements HTMLElement native "*HTMLElem
String title;
+ bool translate;
+
String webkitdropzone;
void click() native;
@@ -4045,7 +4045,7 @@ class _IDBDatabaseJs extends _DOMTypeJs implements IDBDatabase native "*IDBDatab
_IDBVersionChangeRequestJs setVersion(String version) native;
- _IDBTransactionJs transaction(String storeName, int mode) native;
+ _IDBTransactionJs transaction(String storeName, [int mode = null]) native;
}
class _IDBDatabaseErrorJs extends _DOMTypeJs implements IDBDatabaseError native "*IDBDatabaseError" {
@@ -4164,7 +4164,7 @@ class _IDBObjectStoreJs extends _DOMTypeJs implements IDBObjectStore native "*ID
_IDBIndexJs createIndex(String name, String keyPath) native;
- _IDBRequestJs delete(_IDBKeyJs key) native;
+ _IDBRequestJs delete(var key_OR_keyRange) native;
void deleteIndex(String name) native;
@@ -11121,6 +11121,8 @@ class _WebKitCSSTransformValueJs extends _CSSValueListJs implements WebKitCSSTra
}
class _WebKitNamedFlowJs extends _DOMTypeJs implements WebKitNamedFlow native "*WebKitNamedFlow" {
+
+ final bool overflow;
}
class _WebKitPointJs extends _DOMTypeJs implements WebKitPoint native "*WebKitPoint" {
@@ -12627,8 +12629,6 @@ interface Clipboard {
final DataTransferItemList items;
- final List types;
-
void clearData([String type]);
void getData(String type);
@@ -14943,6 +14943,8 @@ interface HTMLElement extends Element {
String title;
+ bool translate;
+
String webkitdropzone;
void click();
@@ -16463,7 +16465,7 @@ interface IDBDatabase {
IDBVersionChangeRequest setVersion(String version);
- IDBTransaction transaction(String storeName, int mode);
+ IDBTransaction transaction(String storeName, [int mode]);
}
// 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
@@ -16617,7 +16619,7 @@ interface IDBObjectStore {
IDBIndex createIndex(String name, String keyPath);
- IDBRequest delete(IDBKey key);
+ IDBRequest delete(var key_OR_keyRange);
void deleteIndex(String name);
@@ -22786,6 +22788,8 @@ interface WebKitCSSTransformValue extends CSSValueList {
// WARNING: Do not edit - generated code.
interface WebKitNamedFlow {
+
+ final bool overflow;
}
// 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 | « no previous file | client/dom/generated/src/frog/Clipboard.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698