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

Side by Side Diff: runtime/bin/stdin.h

Issue 19627004: Add echo and line modes to Stdin. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add missing files. Created 7 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 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. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #ifndef BIN_STDIN_H_
6 #define BIN_STDIN_H_
7
5 #include "bin/builtin.h" 8 #include "bin/builtin.h"
6 #include "bin/dartutils.h"
7 #include "bin/thread.h"
8 #include "bin/utils.h" 9 #include "bin/utils.h"
9 10
10 #include "platform/globals.h" 11 #include "platform/globals.h"
11 #include "platform/thread.h"
12 #include "platform/utils.h"
13
14 #include "include/dart_api.h"
15 12
16 13
17 namespace dart { 14 namespace dart {
18 namespace bin { 15 namespace bin {
19 16
20 void FUNCTION_NAME(Stdin_ReadByte)(Dart_NativeArguments args) { 17 class Stdin {
21 Dart_EnterScope(); 18 public:
22 int c = getchar(); 19 static int ReadByte();
23 if (c == EOF) { 20 static void setEchoMode(bool enabled);
Søren Gjesse 2013/07/24 12:18:49 Uppercase S
Anders Johnsen 2013/07/24 12:57:49 Done.
24 c = -1; 21 static void setLineMode(bool enabled);
Søren Gjesse 2013/07/24 12:18:49 Ditto.
Anders Johnsen 2013/07/24 12:57:49 Done.
25 } 22
26 Dart_SetReturnValue(args, Dart_NewInteger(c)); 23 private:
27 Dart_ExitScope(); 24 DISALLOW_ALLOCATION();
28 } 25 DISALLOW_IMPLICIT_CONSTRUCTORS(Stdin);
26 };
29 27
30 } // namespace bin 28 } // namespace bin
31 } // namespace dart 29 } // namespace dart
30
31 #endif // BIN_STDIN_H_
32
OLDNEW
« no previous file with comments | « runtime/bin/io_natives.cc ('k') | runtime/bin/stdin.cc » ('j') | runtime/bin/stdin_linux.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698