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

Unified Diff: client/dom/generated/src/wrapping/_IDBObjectStoreWrappingImplementation.dart

Issue 8548010: Wrapper dom changes in preparation for SVG (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: tweak Created 9 years, 1 month 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
Index: client/dom/generated/src/wrapping/_IDBObjectStoreWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_IDBObjectStoreWrappingImplementation.dart b/client/dom/generated/src/wrapping/_IDBObjectStoreWrappingImplementation.dart
index 5008e962564c35c763ddea4f8597fc46b4291b0e..48dc37f10b90af539e4f2e5a6ca0e8b8f1e61ae7 100644
--- a/client/dom/generated/src/wrapping/_IDBObjectStoreWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_IDBObjectStoreWrappingImplementation.dart
@@ -11,14 +11,14 @@ class _IDBObjectStoreWrappingImplementation extends DOMWrapperBase implements ID
return new _IDBObjectStoreWrappingImplementation();
}
- String get keyPath() { return _get__IDBObjectStore_keyPath(this); }
- static String _get__IDBObjectStore_keyPath(var _this) native;
+ String get keyPath() { return _get_keyPath(this); }
+ static String _get_keyPath(var _this) native;
- String get name() { return _get__IDBObjectStore_name(this); }
- static String _get__IDBObjectStore_name(var _this) native;
+ String get name() { return _get_name(this); }
+ static String _get_name(var _this) native;
- IDBTransaction get transaction() { return _get__IDBObjectStore_transaction(this); }
- static IDBTransaction _get__IDBObjectStore_transaction(var _this) native;
+ IDBTransaction get transaction() { return _get_transaction(this); }
+ static IDBTransaction _get_transaction(var _this) native;
IDBRequest add(String value, [IDBKey key = null]) {
if (key === null) {

Powered by Google App Engine
This is Rietveld 408576698