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

Unified Diff: runtime/lib/developer.cc

Issue 2468093007: clang-format runtime/lib (Closed)
Patch Set: Created 4 years, 1 month 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/date.cc ('k') | runtime/lib/double.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/lib/developer.cc
diff --git a/runtime/lib/developer.cc b/runtime/lib/developer.cc
index a0e315fab4e45bae764c0f241cd42443946e474d..5d6027b8f9f68820cffad471c48f188930de232a 100644
--- a/runtime/lib/developer.cc
+++ b/runtime/lib/developer.cc
@@ -59,15 +59,9 @@ DEFINE_NATIVE_ENTRY(Developer_log, 8) {
GET_NATIVE_ARGUMENT(Instance, dart_zone, arguments->NativeArgAt(5));
GET_NATIVE_ARGUMENT(Instance, error, arguments->NativeArgAt(6));
GET_NATIVE_ARGUMENT(Instance, stack_trace, arguments->NativeArgAt(7));
- Service::SendLogEvent(isolate,
- sequence.AsInt64Value(),
- timestamp.AsInt64Value(),
- level.Value(),
- name,
- message,
- dart_zone,
- error,
- stack_trace);
+ Service::SendLogEvent(isolate, sequence.AsInt64Value(),
+ timestamp.AsInt64Value(), level.Value(), name, message,
+ dart_zone, error, stack_trace);
return Object::null();
#endif // PRODUCT
}
@@ -141,8 +135,8 @@ DEFINE_NATIVE_ENTRY(Developer_getServiceMinorVersion, 0) {
static void SendNull(const SendPort& port) {
const Dart_Port destination_port_id = port.Id();
- PortMap::PostMessage(new Message(
- destination_port_id, Object::null(), Message::kNormalPriority));
+ PortMap::PostMessage(new Message(destination_port_id, Object::null(),
+ Message::kNormalPriority));
}
« no previous file with comments | « runtime/lib/date.cc ('k') | runtime/lib/double.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698