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: sky/sdk/lib/framework/scheduler.dart

Issue 1177243002: Refactor fn2.dart, since it breached our 1000-line threshold. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: 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
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';
6 import 'dart:sky' as sky; 5 import 'dart:sky' as sky;
7 6
8 typedef void Callback(double timeStamp); 7 typedef void Callback(double timeStamp);
9 8
10 bool _haveScheduledVisualUpdate = false; 9 bool _haveScheduledVisualUpdate = false;
11 int _nextCallbackId = 1; 10 int _nextCallbackId = 1;
12 11
13 final List<Callback> _persistentCallbacks = new List<Callback>(); 12 final List<Callback> _persistentCallbacks = new List<Callback>();
14 Map<int, Callback> _transientCallbacks = new Map<int, Callback>(); 13 Map<int, Callback> _transientCallbacks = new Map<int, Callback>();
15 14
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 _transientCallbacks.remove(id); 51 _transientCallbacks.remove(id);
53 } 52 }
54 53
55 void ensureVisualUpdate() { 54 void ensureVisualUpdate() {
56 assert(sky.window == null); 55 assert(sky.window == null);
57 if (_haveScheduledVisualUpdate) 56 if (_haveScheduledVisualUpdate)
58 return; 57 return;
59 sky.view.scheduleFrame(); 58 sky.view.scheduleFrame();
60 _haveScheduledVisualUpdate = true; 59 _haveScheduledVisualUpdate = true;
61 } 60 }
OLDNEW
« no previous file with comments | « sky/sdk/lib/framework/rendering/object.dart ('k') | sky/sdk/lib/framework/widgets/animated_component.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698