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

Unified Diff: runtime/lib/timeline.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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/lib/symbol_patch.dart ('k') | runtime/lib/timer_impl.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/lib/timeline.dart
diff --git a/runtime/lib/timeline.dart b/runtime/lib/timeline.dart
index 55a40e84d0a86a3a674d018bc636bec9719d2bd0..ae66b6636c36b5e930eeca5898625f4a241614b0 100644
--- a/runtime/lib/timeline.dart
+++ b/runtime/lib/timeline.dart
@@ -2,33 +2,29 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
-@patch bool _isDartStreamEnabled() native "Timeline_isDartStreamEnabled";
+@patch
+bool _isDartStreamEnabled() native "Timeline_isDartStreamEnabled";
-@patch int _getTraceClock() native "Timeline_getTraceClock";
+@patch
+int _getTraceClock() native "Timeline_getTraceClock";
-@patch int _getThreadCpuClock() native "Timeline_getThreadCpuClock";
+@patch
+int _getThreadCpuClock() native "Timeline_getThreadCpuClock";
-@patch int _getNextAsyncId() native "Timeline_getNextAsyncId";
+@patch
+int _getNextAsyncId() native "Timeline_getNextAsyncId";
-@patch int _getIsolateNum() native "Timeline_getIsolateNum";
+@patch
+int _getIsolateNum() native "Timeline_getIsolateNum";
-@patch void _reportTaskEvent(
- int start,
- int taskId,
- String phase,
- String category,
- String name,
- String argumentsAsJson) native "Timeline_reportTaskEvent";
+@patch
+void _reportTaskEvent(int start, int taskId, String phase, String category,
+ String name, String argumentsAsJson) native "Timeline_reportTaskEvent";
-@patch void _reportCompleteEvent(
- int start,
- int startCpu,
- String category,
- String name,
- String argumentsAsJson) native "Timeline_reportCompleteEvent";
+@patch
+void _reportCompleteEvent(int start, int startCpu, String category, String name,
+ String argumentsAsJson) native "Timeline_reportCompleteEvent";
-@patch void _reportInstantEvent(
- int start,
- String category,
- String name,
- String argumentsAsJson) native "Timeline_reportInstantEvent";
+@patch
+void _reportInstantEvent(int start, String category, String name,
+ String argumentsAsJson) native "Timeline_reportInstantEvent";
« no previous file with comments | « runtime/lib/symbol_patch.dart ('k') | runtime/lib/timer_impl.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698