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

Unified Diff: runtime/bin/stdio_fuchsia.cc

Issue 2753233002: [dart:io] Move Platform.ansiSupported to {Stdin,Stdout}.supportsAnsiEscapes (Closed)
Patch Set: Fix typo 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
Index: runtime/bin/stdio_fuchsia.cc
diff --git a/runtime/bin/stdio_fuchsia.cc b/runtime/bin/stdio_fuchsia.cc
index 07febe1df261bcef71b85fdd495a72600ad0c45f..c36e06f69271fcf38eca09f38fd062ebca0daab3 100644
--- a/runtime/bin/stdio_fuchsia.cc
+++ b/runtime/bin/stdio_fuchsia.cc
@@ -42,11 +42,23 @@ bool Stdin::SetLineMode(bool enabled) {
}
+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;
+}
+
} // namespace bin
} // namespace dart

Powered by Google App Engine
This is Rietveld 408576698