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

Unified Diff: runtime/bin/utils_fuchsia.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/utils_android.cc ('k') | runtime/bin/utils_linux.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/utils_fuchsia.cc
diff --git a/runtime/bin/utils_fuchsia.cc b/runtime/bin/utils_fuchsia.cc
index 79a1fbae6dc50b87ab3655fd848fdb60717fd009..2425e49aa09a60f1487e29829e6d61bbfca4c2d0 100644
--- a/runtime/bin/utils_fuchsia.cc
+++ b/runtime/bin/utils_fuchsia.cc
@@ -40,29 +40,33 @@ void OSError::SetCodeAndMessage(SubSystem sub_system, int code) {
}
-const char* StringUtils::ConsoleStringToUtf8(
- const char* str, intptr_t len, intptr_t* result_len) {
+const char* StringUtils::ConsoleStringToUtf8(const char* str,
+ intptr_t len,
+ intptr_t* result_len) {
UNIMPLEMENTED();
return NULL;
}
-const char* StringUtils::Utf8ToConsoleString(
- const char* utf8, intptr_t len, intptr_t* result_len) {
+const char* StringUtils::Utf8ToConsoleString(const char* utf8,
+ intptr_t len,
+ intptr_t* result_len) {
UNIMPLEMENTED();
return NULL;
}
-char* StringUtils::ConsoleStringToUtf8(
- char* str, intptr_t len, intptr_t* result_len) {
+char* StringUtils::ConsoleStringToUtf8(char* str,
+ intptr_t len,
+ intptr_t* result_len) {
UNIMPLEMENTED();
return NULL;
}
-char* StringUtils::Utf8ToConsoleString(
- char* utf8, intptr_t len, intptr_t* result_len) {
+char* StringUtils::Utf8ToConsoleString(char* utf8,
+ intptr_t len,
+ intptr_t* result_len) {
UNIMPLEMENTED();
return NULL;
}
@@ -78,8 +82,7 @@ bool ShellUtils::GetUtf8Argv(int argc, char** argv) {
}
-void TimerUtils::InitOnce() {
-}
+void TimerUtils::InitOnce() {}
int64_t TimerUtils::GetCurrentMonotonicMillis() {
@@ -94,8 +97,8 @@ int64_t TimerUtils::GetCurrentMonotonicMicros() {
void TimerUtils::Sleep(int64_t millis) {
- mx_nanosleep(
- millis * kMicrosecondsPerMillisecond * kNanosecondsPerMicrosecond);
+ mx_nanosleep(millis * kMicrosecondsPerMillisecond *
+ kNanosecondsPerMicrosecond);
}
} // namespace bin
« no previous file with comments | « runtime/bin/utils_android.cc ('k') | runtime/bin/utils_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698