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

Unified Diff: samples/ui_lib/touch/Scrollbar.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 | « samples/ui_lib/touch/Momentum.dart ('k') | samples/ui_lib/touch/Scroller.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: samples/ui_lib/touch/Scrollbar.dart
diff --git a/samples/ui_lib/touch/Scrollbar.dart b/samples/ui_lib/touch/Scrollbar.dart
index 75feef10b5f9972d8bdc2e7b7911a5917d1ed8a2..3dc2d91215e75b19dbfd34a19ee490de44d922c5 100644
--- a/samples/ui_lib/touch/Scrollbar.dart
+++ b/samples/ui_lib/touch/Scrollbar.dart
@@ -63,7 +63,7 @@ class Scrollbar implements ScrollListener {
_boundHideFn = () { _showScrollbars(false); };
}
- bool get _scrollBarDragInProgress() => _scrollBarDragInProgressValue;
+ bool get _scrollBarDragInProgress => _scrollBarDragInProgressValue;
void set _scrollBarDragInProgress(bool value) {
_scrollBarDragInProgressValue = value;
« no previous file with comments | « samples/ui_lib/touch/Momentum.dart ('k') | samples/ui_lib/touch/Scroller.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698