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

Side by Side Diff: runtime/bin/stdio_fuchsia.cc

Issue 2168193002: Fuchsia: Build standalone VM. Make it run "Hello, World!". (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Address comments Created 4 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 unified diff | Download patch
« no previous file with comments | « runtime/bin/socket_fuchsia.cc ('k') | runtime/bin/utils_fuchsia.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.
4
5 #if !defined(DART_IO_DISABLED)
6
7 #include "platform/globals.h"
8 #if defined(TARGET_OS_FUCHSIA)
9
10 #include "bin/stdio.h"
11
12 namespace dart {
13 namespace bin {
14
15 int Stdin::ReadByte() {
16 UNIMPLEMENTED();
17 return -1;
18 }
19
20
21 bool Stdin::GetEchoMode() {
22 UNIMPLEMENTED();
23 return false;
24 }
25
26
27 void Stdin::SetEchoMode(bool enabled) {
28 UNIMPLEMENTED();
29 }
30
31
32 bool Stdin::GetLineMode() {
33 UNIMPLEMENTED();
34 return false;
35 }
36
37
38 void Stdin::SetLineMode(bool enabled) {
39 UNIMPLEMENTED();
40 }
41
42
43 bool Stdout::GetTerminalSize(intptr_t fd, int size[2]) {
44 UNIMPLEMENTED();
45 return false;
46 }
47
48 } // namespace bin
49 } // namespace dart
50
51 #endif // defined(TARGET_OS_FUCHSIA)
52
53 #endif // !defined(DART_IO_DISABLED)
OLDNEW
« no previous file with comments | « runtime/bin/socket_fuchsia.cc ('k') | runtime/bin/utils_fuchsia.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698