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

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

Issue 9114060: Manually reapply changes to get around 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 | « client/dom/generated/src/wrapping/_InjectedScriptHostWrappingImplementation.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/dom/generated/src/wrapping/_StorageWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_StorageWrappingImplementation.dart b/client/dom/generated/src/wrapping/_StorageWrappingImplementation.dart
index 39a5238831edfd438bf3391455bd9c7cd7f50110..8effc4f3e651d2769b7b6cbc3acc747f73699038 100644
--- a/client/dom/generated/src/wrapping/_StorageWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_StorageWrappingImplementation.dart
@@ -20,8 +20,8 @@ class _StorageWrappingImplementation extends DOMWrapperBase implements Storage {
}
static void _clear(receiver) native;
- String getItem(String key) {
- return _getItem(this, key);
+ String getItem(String key_) {
+ return _getItem(this, key_);
}
static String _getItem(receiver, key) native;
@@ -30,14 +30,14 @@ class _StorageWrappingImplementation extends DOMWrapperBase implements Storage {
}
static String _key(receiver, index) native;
- void removeItem(String key) {
- _removeItem(this, key);
+ void removeItem(String key_) {
+ _removeItem(this, key_);
return;
}
static void _removeItem(receiver, key) native;
- void setItem(String key, String data) {
- _setItem(this, key, data);
+ void setItem(String key_, String data) {
+ _setItem(this, key_, data);
return;
}
static void _setItem(receiver, key, data) native;
« no previous file with comments | « client/dom/generated/src/wrapping/_InjectedScriptHostWrappingImplementation.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698