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

Unified Diff: lib/html/src/MessageEventWrappingImplementation.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/MessageEvent.dart ('k') | lib/html/src/MutationEvent.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/html/src/MessageEventWrappingImplementation.dart
diff --git a/lib/html/src/MessageEventWrappingImplementation.dart b/lib/html/src/MessageEventWrappingImplementation.dart
index a4efa8db4a71ed55cfdb7a20a10f2fa2f3772630..3c4b5d0495641c0d45429821ccd1c3ff01b0419a 100644
--- a/lib/html/src/MessageEventWrappingImplementation.dart
+++ b/lib/html/src/MessageEventWrappingImplementation.dart
@@ -14,13 +14,13 @@ class MessageEventWrappingImplementation extends EventWrappingImplementation imp
return LevelDom.wrapMessageEvent(e);
}
- String get data() => _ptr.data;
+ String get data => _ptr.data;
- String get lastEventId() => _ptr.lastEventId;
+ String get lastEventId => _ptr.lastEventId;
- MessagePort get messagePort() => LevelDom.wrapMessagePort(_ptr.messagePort);
+ MessagePort get messagePort => LevelDom.wrapMessagePort(_ptr.messagePort);
- String get origin() => _ptr.origin;
+ String get origin => _ptr.origin;
- Window get source() => LevelDom.wrapWindow(_ptr.source);
+ Window get source => LevelDom.wrapWindow(_ptr.source);
}
« no previous file with comments | « lib/html/src/MessageEvent.dart ('k') | lib/html/src/MutationEvent.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698