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

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

Issue 8966029: Report errors and warnings for hiding elements, issue 572. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fixes for comments Created 9 years 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/_IDBKeyRangeWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_IDBKeyRangeWrappingImplementation.dart b/client/dom/generated/src/wrapping/_IDBKeyRangeWrappingImplementation.dart
index 791e140ce8470d55f5039c394a407cf11556aa12..095299fcef0972d49f3091942cf9637ae2b4220e 100644
--- a/client/dom/generated/src/wrapping/_IDBKeyRangeWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_IDBKeyRangeWrappingImplementation.dart
@@ -41,30 +41,30 @@ class _IDBKeyRangeWrappingImplementation extends DOMWrapperBase implements IDBKe
static IDBKeyRange _bound_2(receiver, lower, upper, lowerOpen) native;
static IDBKeyRange _bound_3(receiver, lower, upper, lowerOpen, upperOpen) native;
- IDBKeyRange lowerBound(IDBKey bound, [bool open = null]) {
+ IDBKeyRange lowerBound(IDBKey bound_, [bool open = null]) {
if (open === null) {
- return _lowerBound(this, bound);
+ return _lowerBound(this, bound_);
} else {
- return _lowerBound_2(this, bound, open);
+ return _lowerBound_2(this, bound_, open);
}
}
- static IDBKeyRange _lowerBound(receiver, bound) native;
- static IDBKeyRange _lowerBound_2(receiver, bound, open) native;
+ static IDBKeyRange _lowerBound(receiver, bound_) native;
+ static IDBKeyRange _lowerBound_2(receiver, bound_, open) native;
IDBKeyRange only(IDBKey value) {
return _only(this, value);
}
static IDBKeyRange _only(receiver, value) native;
- IDBKeyRange upperBound(IDBKey bound, [bool open = null]) {
+ IDBKeyRange upperBound(IDBKey bound_, [bool open = null]) {
if (open === null) {
- return _upperBound(this, bound);
+ return _upperBound(this, bound_);
} else {
- return _upperBound_2(this, bound, open);
+ return _upperBound_2(this, bound_, open);
}
}
- static IDBKeyRange _upperBound(receiver, bound) native;
- static IDBKeyRange _upperBound_2(receiver, bound, open) native;
+ static IDBKeyRange _upperBound(receiver, bound_) native;
+ static IDBKeyRange _upperBound_2(receiver, bound_, open) native;
String get typeName() { return "IDBKeyRange"; }
}

Powered by Google App Engine
This is Rietveld 408576698