| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |