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

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

Issue 242533005: [NaCl SDK] nacl_io: Add flow control the JavaScript pipes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 8 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/fifo_char.h
diff --git a/native_client_sdk/src/libraries/nacl_io/fifo_char.h b/native_client_sdk/src/libraries/nacl_io/fifo_char.h
index e38034aef6e5f622765d37399880efb155d45f5f..9fe018cf092a88d4d4fce5b0f541a285944d3abe 100644
--- a/native_client_sdk/src/libraries/nacl_io/fifo_char.h
+++ b/native_client_sdk/src/libraries/nacl_io/fifo_char.h
@@ -21,9 +21,9 @@ class FIFOChar : public FIFOInterface {
explicit FIFOChar(size_t size);
virtual ~FIFOChar();
- virtual bool IsEmpty();
binji 2014/05/01 20:22:31 I prefer when virtual overrides are labelled as su
Sam Clegg 2014/05/01 22:16:55 Done.
- virtual bool IsFull();
- virtual bool Resize(size_t len);
+ bool IsEmpty();
+ bool IsFull();
+ bool Resize(size_t len);
size_t ReadAvailable();
size_t WriteAvailable();

Powered by Google App Engine
This is Rietveld 408576698