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

Unified Diff: runtime/bin/builtin_nolib.cc

Issue 2480793002: clang-format runtime/bin (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/bin/builtin_natives.cc ('k') | runtime/bin/crypto.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/builtin_nolib.cc
diff --git a/runtime/bin/builtin_nolib.cc b/runtime/bin/builtin_nolib.cc
index 5ccf5c886da64a0f2e9b1d8ad2171173263ceec2..a61d915111c27a6917bf5ed9ae882dc42fb7a6d5 100644
--- a/runtime/bin/builtin_nolib.cc
+++ b/runtime/bin/builtin_nolib.cc
@@ -14,13 +14,12 @@ namespace dart {
namespace bin {
Builtin::builtin_lib_props Builtin::builtin_libraries_[] = {
- /* { url_, source_, patch_url_, patch_source_, has_natives_ } */
- { DartUtils::kBuiltinLibURL, NULL, NULL, NULL, true },
- { DartUtils::kIOLibURL, NULL, NULL, NULL, true },
+ /* { url_, source_, patch_url_, patch_source_, has_natives_ } */
+ {DartUtils::kBuiltinLibURL, NULL, NULL, NULL, true},
+ {DartUtils::kIOLibURL, NULL, NULL, NULL, true},
- // End marker.
- { NULL, NULL, NULL, NULL, false }
-};
+ // End marker.
+ {NULL, NULL, NULL, NULL, false}};
Dart_Port Builtin::load_port_ = ILLEGAL_PORT;
const int Builtin::num_libs_ =
@@ -33,14 +32,14 @@ Dart_Handle Builtin::Source(BuiltinLibraryId id) {
Dart_Handle Builtin::PartSource(BuiltinLibraryId id, const char* uri) {
- return DartUtils::NewError(
- "Unreachable code in Builtin::PartSource (%d).", id);
+ return DartUtils::NewError("Unreachable code in Builtin::PartSource (%d).",
+ id);
}
Dart_Handle Builtin::GetSource(const char** source_paths, const char* uri) {
- return DartUtils::NewError(
- "Unreachable code in Builtin::GetSource (%s).", uri);
+ return DartUtils::NewError("Unreachable code in Builtin::GetSource (%s).",
+ uri);
}
@@ -60,8 +59,8 @@ void Builtin::SetNativeResolver(BuiltinLibraryId id) {
Dart_Handle Builtin::LoadLibrary(Dart_Handle url, BuiltinLibraryId id) {
- return DartUtils::NewError(
- "Unreachable code in Builtin::LoadLibrary (%d).", id);
+ return DartUtils::NewError("Unreachable code in Builtin::LoadLibrary (%d).",
+ id);
}
« no previous file with comments | « runtime/bin/builtin_natives.cc ('k') | runtime/bin/crypto.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698