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

Side by Side Diff: sky/sdk/lib/widgets/animated_component.dart

Issue 1173293005: Make UINode's key a String (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: nit Created 5 years, 6 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
« no previous file with comments | « sky/sdk/lib/editing2/input.dart ('k') | sky/sdk/lib/widgets/basic.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 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 import 'dart:async'; 5 import 'dart:async';
6 6
7 import '../framework/animation/animated_value.dart'; 7 import '../framework/animation/animated_value.dart';
8 import 'basic.dart'; 8 import 'basic.dart';
9 9
10 typedef void SetterFunction(double value); 10 typedef void SetterFunction(double value);
11 11
12 class _AnimationEntry { 12 class _AnimationEntry {
13 _AnimationEntry(this.value, this.setter); 13 _AnimationEntry(this.value, this.setter);
14 final AnimatedValue value; 14 final AnimatedValue value;
15 final SetterFunction setter; 15 final SetterFunction setter;
16 StreamSubscription<double> subscription; 16 StreamSubscription<double> subscription;
17 } 17 }
18 18
19 abstract class AnimatedComponent extends Component { 19 abstract class AnimatedComponent extends Component {
20 20
21 AnimatedComponent({ Object key }) : super(key: key, stateful: true); 21 AnimatedComponent({ String key }) : super(key: key, stateful: true);
22 22
23 void syncFields(AnimatedComponent source) { } 23 void syncFields(AnimatedComponent source) { }
24 24
25 List<_AnimationEntry> _animatedFields = new List<_AnimationEntry>(); 25 List<_AnimationEntry> _animatedFields = new List<_AnimationEntry>();
26 26
27 animate(AnimatedValue value, SetterFunction setter) { 27 animate(AnimatedValue value, SetterFunction setter) {
28 assert(!mounted); 28 assert(!mounted);
29 setter(value.value); 29 setter(value.value);
30 _animatedFields.add(new _AnimationEntry(value, setter)); 30 _animatedFields.add(new _AnimationEntry(value, setter));
31 } 31 }
(...skipping 11 matching lines...) Expand all
43 void didUnmount() { 43 void didUnmount() {
44 for (_AnimationEntry entry in _animatedFields) { 44 for (_AnimationEntry entry in _animatedFields) {
45 assert(entry.subscription != null); 45 assert(entry.subscription != null);
46 entry.subscription.cancel(); 46 entry.subscription.cancel();
47 entry.subscription = null; 47 entry.subscription = null;
48 } 48 }
49 super.didUnmount(); 49 super.didUnmount();
50 } 50 }
51 51
52 } 52 }
OLDNEW
« no previous file with comments | « sky/sdk/lib/editing2/input.dart ('k') | sky/sdk/lib/widgets/basic.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698