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

Unified Diff: client/dom/generated/src/frog/IDBObjectStore.dart

Issue 9317046: Make dart:dom implementation types private so they don't muddle the docs. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 11 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 | « client/dom/generated/src/frog/IDBKeyRange.dart ('k') | client/dom/generated/src/frog/IDBRequest.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/dom/generated/src/frog/IDBObjectStore.dart
diff --git a/client/dom/generated/src/frog/IDBObjectStore.dart b/client/dom/generated/src/frog/IDBObjectStore.dart
index 6dffdf4b7323eb94498443c7ff06b0d2d216d3b3..159551609cb390704f76169e233d293b4ab9d16b 100644
--- a/client/dom/generated/src/frog/IDBObjectStore.dart
+++ b/client/dom/generated/src/frog/IDBObjectStore.dart
@@ -1,29 +1,29 @@
-class IDBObjectStoreJs extends DOMTypeJs implements IDBObjectStore native "*IDBObjectStore" {
+class _IDBObjectStoreJs extends _DOMTypeJs implements IDBObjectStore native "*IDBObjectStore" {
String get keyPath() native "return this.keyPath;";
String get name() native "return this.name;";
- IDBTransactionJs get transaction() native "return this.transaction;";
+ _IDBTransactionJs get transaction() native "return this.transaction;";
- IDBRequestJs add(Dynamic value, [IDBKeyJs key = null]) native;
+ _IDBRequestJs add(Dynamic value, [_IDBKeyJs key = null]) native;
- IDBRequestJs clear() native;
+ _IDBRequestJs clear() native;
- IDBRequestJs count([IDBKeyRangeJs range = null]) native;
+ _IDBRequestJs count([_IDBKeyRangeJs range = null]) native;
- IDBIndexJs createIndex(String name, String keyPath) native;
+ _IDBIndexJs createIndex(String name, String keyPath) native;
- IDBRequestJs delete(IDBKeyJs key) native;
+ _IDBRequestJs delete(_IDBKeyJs key) native;
void deleteIndex(String name) native;
- IDBRequestJs getObject(IDBKeyJs key) native;
+ _IDBRequestJs getObject(_IDBKeyJs key) native;
- IDBIndexJs index(String name) native;
+ _IDBIndexJs index(String name) native;
- IDBRequestJs openCursor([IDBKeyRangeJs range = null, int direction = null]) native;
+ _IDBRequestJs openCursor([_IDBKeyRangeJs range = null, int direction = null]) native;
- IDBRequestJs put(Dynamic value, [IDBKeyJs key = null]) native;
+ _IDBRequestJs put(Dynamic value, [_IDBKeyJs key = null]) native;
}
« no previous file with comments | « client/dom/generated/src/frog/IDBKeyRange.dart ('k') | client/dom/generated/src/frog/IDBRequest.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698