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

Side by Side Diff: runtime/lib/profiler.dart

Issue 2751423005: Run dartfmt on all files under runtime. (Closed)
Patch Set: Run dartfmt on all files under runtime. Created 3 years, 9 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 | « runtime/lib/print_patch.dart ('k') | runtime/lib/regexp_patch.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) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, 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 @patch class UserTag { 5 @patch
6 @patch factory UserTag(String label) { 6 class UserTag {
7 @patch
8 factory UserTag(String label) {
7 return new _UserTag(label); 9 return new _UserTag(label);
8 } 10 }
9 @patch static UserTag get defaultTag => _getDefaultTag(); 11 @patch
12 static UserTag get defaultTag => _getDefaultTag();
10 } 13 }
11 14
12 class _UserTag implements UserTag { 15 class _UserTag implements UserTag {
13 factory _UserTag(String label) native "UserTag_new"; 16 factory _UserTag(String label) native "UserTag_new";
14 String get label native "UserTag_label"; 17 String get label native "UserTag_label";
15 UserTag makeCurrent() native "UserTag_makeCurrent"; 18 UserTag makeCurrent() native "UserTag_makeCurrent";
16 } 19 }
17 20
18 @patch UserTag getCurrentTag() => _getCurrentTag(); 21 @patch
22 UserTag getCurrentTag() => _getCurrentTag();
19 UserTag _getCurrentTag() native "Profiler_getCurrentTag"; 23 UserTag _getCurrentTag() native "Profiler_getCurrentTag";
20 24
21 UserTag _getDefaultTag() native "UserTag_defaultTag"; 25 UserTag _getDefaultTag() native "UserTag_defaultTag";
OLDNEW
« no previous file with comments | « runtime/lib/print_patch.dart ('k') | runtime/lib/regexp_patch.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698