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: sdk/lib/core/stopwatch.dart

Issue 2973823002: Revert "Remaining private libs" (Closed)
Patch Set: Created 3 years, 5 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 | « sdk/lib/core/stacktrace.dart ('k') | sdk/lib/core/string.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 (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // 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
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 part of "dart:core"; 5 part of "core.dart";
6 6
7 /** 7 /**
8 * A simple stopwatch interface to measure elapsed time. 8 * A simple stopwatch interface to measure elapsed time.
9 */ 9 */
10 class Stopwatch { 10 class Stopwatch {
11 /** 11 /**
12 * Cached frequency of the system. Must be initialized in [_initTicker]; 12 * Cached frequency of the system. Must be initialized in [_initTicker];
13 */ 13 */
14 static int _frequency; 14 static int _frequency;
15 15
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 */ 116 */
117 bool get isRunning => _stop == null; 117 bool get isRunning => _stop == null;
118 118
119 /** 119 /**
120 * Initializes the time-measuring system. *Must* initialize the [_frequency] 120 * Initializes the time-measuring system. *Must* initialize the [_frequency]
121 * variable. 121 * variable.
122 */ 122 */
123 external static void _initTicker(); 123 external static void _initTicker();
124 external static int _now(); 124 external static int _now();
125 } 125 }
OLDNEW
« no previous file with comments | « sdk/lib/core/stacktrace.dart ('k') | sdk/lib/core/string.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698