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

Unified Diff: lib/html/src/StorageEventWrappingImplementation.dart

Issue 10919146: Get rid of a lot of () for getters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 3 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 | « lib/html/src/StorageEvent.dart ('k') | lib/html/src/TextEvent.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/html/src/StorageEventWrappingImplementation.dart
diff --git a/lib/html/src/StorageEventWrappingImplementation.dart b/lib/html/src/StorageEventWrappingImplementation.dart
index 4852a4cea2b1e98694597c67898c5a64019fb341..4a79172510dfee1389810ddd08259b8e2da4745b 100644
--- a/lib/html/src/StorageEventWrappingImplementation.dart
+++ b/lib/html/src/StorageEventWrappingImplementation.dart
@@ -15,13 +15,13 @@ class StorageEventWrappingImplementation extends EventWrappingImplementation imp
return LevelDom.wrapStorageEvent(e);
}
- String get key() => _ptr.key;
+ String get key => _ptr.key;
- String get newValue() => _ptr.newValue;
+ String get newValue => _ptr.newValue;
- String get oldValue() => _ptr.oldValue;
+ String get oldValue => _ptr.oldValue;
- Storage get storageArea() => LevelDom.wrapStorage(_ptr.storageArea);
+ Storage get storageArea => LevelDom.wrapStorage(_ptr.storageArea);
- String get url() => _ptr.url;
+ String get url => _ptr.url;
}
« no previous file with comments | « lib/html/src/StorageEvent.dart ('k') | lib/html/src/TextEvent.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698