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

Unified Diff: client/dom/generated/src/wrapping/_IDBIndexWrappingImplementation.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/_IDBIndexWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_IDBIndexWrappingImplementation.dart b/client/dom/generated/src/wrapping/_IDBIndexWrappingImplementation.dart
index 5d529d3acf8253be74624c5bc68a30af5bfb3739..ff2ba33a0fb655c875d514bda3a5f26b89bc2574 100644
--- a/client/dom/generated/src/wrapping/_IDBIndexWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_IDBIndexWrappingImplementation.dart
@@ -11,17 +11,17 @@ class _IDBIndexWrappingImplementation extends DOMWrapperBase implements IDBIndex
return new _IDBIndexWrappingImplementation();
}
- String get keyPath() { return _get__IDBIndex_keyPath(this); }
- static String _get__IDBIndex_keyPath(var _this) native;
+ String get keyPath() { return _get_keyPath(this); }
+ static String _get_keyPath(var _this) native;
- String get name() { return _get__IDBIndex_name(this); }
- static String _get__IDBIndex_name(var _this) native;
+ String get name() { return _get_name(this); }
+ static String _get_name(var _this) native;
- IDBObjectStore get objectStore() { return _get__IDBIndex_objectStore(this); }
- static IDBObjectStore _get__IDBIndex_objectStore(var _this) native;
+ IDBObjectStore get objectStore() { return _get_objectStore(this); }
+ static IDBObjectStore _get_objectStore(var _this) native;
- bool get unique() { return _get__IDBIndex_unique(this); }
- static bool _get__IDBIndex_unique(var _this) native;
+ bool get unique() { return _get_unique(this); }
+ static bool _get_unique(var _this) native;
IDBRequest getObject(IDBKey key) {
return _getObject(this, key);

Powered by Google App Engine
This is Rietveld 408576698