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

Side by Side Diff: dart/samples/ui_lib/touch/Scroller.dart

Issue 11233061: Revert "Parts must start with 'part of'" and "Attempt to fix VM build" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 2 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « dart/samples/ui_lib/touch/Scrollbar.dart ('k') | dart/samples/ui_lib/touch/TimeUtil.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 part of touch;
2
3 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
4 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
5 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
6 4
7 /** 5 /**
8 * Implementation of a custom scrolling behavior. 6 * Implementation of a custom scrolling behavior.
9 * This behavior overrides native scrolling for an area. This area can be a 7 * This behavior overrides native scrolling for an area. This area can be a
10 * single defined part of a page, the entire page, or several different parts 8 * single defined part of a page, the entire page, or several different parts
11 * of a page. 9 * of a page.
12 * 10 *
(...skipping 711 matching lines...) Expand 10 before | Expand all | Expand 10 after
724 for (EventListener listener in _listeners) { 722 for (EventListener listener in _listeners) {
725 listener(evt); 723 listener(evt);
726 } 724 }
727 } 725 }
728 } 726 }
729 727
730 class ScrollerScrollTechnique { 728 class ScrollerScrollTechnique {
731 static const TRANSFORM_3D = 1; 729 static const TRANSFORM_3D = 1;
732 static const RELATIVE_POSITIONING = 2; 730 static const RELATIVE_POSITIONING = 2;
733 } 731 }
OLDNEW
« no previous file with comments | « dart/samples/ui_lib/touch/Scrollbar.dart ('k') | dart/samples/ui_lib/touch/TimeUtil.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698