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

Unified Diff: native_client_sdk/src/libraries/nacl_io/event_emitter_udp.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_udp.h
diff --git a/native_client_sdk/src/libraries/nacl_io/event_emitter_udp.h b/native_client_sdk/src/libraries/nacl_io/event_emitter_udp.h
index 02d64a4e90086625969cfc3c50216fe9d2ce258b..cb64fbc73ffaf157ed6baf1d8468c02fe315a683 100644
--- a/native_client_sdk/src/libraries/nacl_io/event_emitter_udp.h
+++ b/native_client_sdk/src/libraries/nacl_io/event_emitter_udp.h
@@ -27,10 +27,11 @@ class EventEmitterUDP : public EventEmitterStream {
Packet* ReadTXPacket_Locked();
void WriteTXPacket_Locked(Packet* packet);
+protected:
virtual FIFOPacket* in_fifo() { return &in_fifo_; }
noelallen1 2013/10/12 00:13:29 same
virtual FIFOPacket* out_fifo() { return &out_fifo_; }
-protected:
+private:
FIFOPacket in_fifo_;
FIFOPacket out_fifo_;
DISALLOW_COPY_AND_ASSIGN(EventEmitterUDP);

Powered by Google App Engine
This is Rietveld 408576698