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

Unified Diff: native_client_sdk/src/libraries/nacl_io/event_emitter_tty.h

Issue 26703008: [NaCl SDK] nacl_io: Add support for non-blocking connect/accept (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 2 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: native_client_sdk/src/libraries/nacl_io/event_emitter_tty.h
diff --git a/native_client_sdk/src/libraries/nacl_io/event_emitter_tty.h b/native_client_sdk/src/libraries/nacl_io/event_emitter_tty.h
index c0ef09c008e0e9bb6edc8e9b86a0e41844e0618f..d3fbd89571ff2542a08e53fe787cd63a31e6ea45 100644
--- a/native_client_sdk/src/libraries/nacl_io/event_emitter_tty.h
+++ b/native_client_sdk/src/libraries/nacl_io/event_emitter_tty.h
@@ -28,6 +28,7 @@ class EventEmitterTTY : public EventEmitterStream {
size_t Read_Locked(char* data, size_t len);
size_t Write_Locked(const char* data, size_t len);
+ protected:
virtual FIFOChar* in_fifo() { return &fifo_; }
noelallen1 2013/10/12 00:13:29 same
virtual FIFONull* out_fifo() { return &null_; }

Powered by Google App Engine
This is Rietveld 408576698