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

Unified Diff: client/dom/generated/src/frog/IDBKeyRange.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/IDBKey.dart ('k') | client/dom/generated/src/frog/IDBObjectStore.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/dom/generated/src/frog/IDBKeyRange.dart
diff --git a/client/dom/generated/src/frog/IDBKeyRange.dart b/client/dom/generated/src/frog/IDBKeyRange.dart
index 9abae598efd9f565de66ed80a95e59918cdc05c7..4c74a0007928b180b3128fb5a9be5a9b25f88eff 100644
--- a/client/dom/generated/src/frog/IDBKeyRange.dart
+++ b/client/dom/generated/src/frog/IDBKeyRange.dart
@@ -1,19 +1,19 @@
-class IDBKeyRangeJs extends DOMTypeJs implements IDBKeyRange native "*IDBKeyRange" {
+class _IDBKeyRangeJs extends _DOMTypeJs implements IDBKeyRange native "*IDBKeyRange" {
- IDBKeyJs get lower() native "return this.lower;";
+ _IDBKeyJs get lower() native "return this.lower;";
bool get lowerOpen() native "return this.lowerOpen;";
- IDBKeyJs get upper() native "return this.upper;";
+ _IDBKeyJs get upper() native "return this.upper;";
bool get upperOpen() native "return this.upperOpen;";
- IDBKeyRangeJs bound(IDBKeyJs lower, IDBKeyJs upper, [bool lowerOpen = null, bool upperOpen = null]) native;
+ _IDBKeyRangeJs bound(_IDBKeyJs lower, _IDBKeyJs upper, [bool lowerOpen = null, bool upperOpen = null]) native;
- IDBKeyRangeJs lowerBound(IDBKeyJs bound, [bool open = null]) native;
+ _IDBKeyRangeJs lowerBound(_IDBKeyJs bound, [bool open = null]) native;
- IDBKeyRangeJs only(IDBKeyJs value) native;
+ _IDBKeyRangeJs only(_IDBKeyJs value) native;
- IDBKeyRangeJs upperBound(IDBKeyJs bound, [bool open = null]) native;
+ _IDBKeyRangeJs upperBound(_IDBKeyJs bound, [bool open = null]) native;
}
« no previous file with comments | « client/dom/generated/src/frog/IDBKey.dart ('k') | client/dom/generated/src/frog/IDBObjectStore.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698