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

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

Issue 9123026: Undo manual edit to avoid shadowing warning (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 | « no previous file | client/dom/generated/src/wrapping/_InjectedScriptHostWrappingImplementation.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 5950729bf55a1561facef6bd1d0ad43c68f99467..791e140ce8470d55f5039c394a407cf11556aa12 100644
--- a/client/dom/generated/src/wrapping/_IDBKeyRangeWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_IDBKeyRangeWrappingImplementation.dart
@@ -41,11 +41,11 @@ 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;
@@ -56,11 +56,11 @@ class _IDBKeyRangeWrappingImplementation extends DOMWrapperBase implements IDBKe
}
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;
« no previous file with comments | « no previous file | client/dom/generated/src/wrapping/_InjectedScriptHostWrappingImplementation.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698