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

Unified Diff: runtime/bin/stdio_fuchsia.cc

Issue 2974233002: VM: Re-format to use at most one newline between functions (Closed)
Patch Set: Rebase and merge Created 3 years, 5 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/bin/stdio_android.cc ('k') | runtime/bin/stdio_linux.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/stdio_fuchsia.cc
diff --git a/runtime/bin/stdio_fuchsia.cc b/runtime/bin/stdio_fuchsia.cc
index c36e06f69271fcf38eca09f38fd062ebca0daab3..9945f84d9c7f90d2a820f059dc4a6c5ca36eed58 100644
--- a/runtime/bin/stdio_fuchsia.cc
+++ b/runtime/bin/stdio_fuchsia.cc
@@ -17,43 +17,36 @@ bool Stdin::ReadByte(int* byte) {
return false;
}
-
bool Stdin::GetEchoMode(bool* enabled) {
UNIMPLEMENTED();
return false;
}
-
bool Stdin::SetEchoMode(bool enabled) {
UNIMPLEMENTED();
return false;
}
-
bool Stdin::GetLineMode(bool* enabled) {
UNIMPLEMENTED();
return false;
}
-
bool Stdin::SetLineMode(bool enabled) {
UNIMPLEMENTED();
return false;
}
-
bool Stdin::AnsiSupported(bool* supported) {
UNIMPLEMENTED();
return false;
}
-
bool Stdout::GetTerminalSize(intptr_t fd, int size[2]) {
UNIMPLEMENTED();
return false;
}
-
bool Stdout::AnsiSupported(intptr_t fd, bool* supported) {
UNIMPLEMENTED();
return false;
« no previous file with comments | « runtime/bin/stdio_android.cc ('k') | runtime/bin/stdio_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698