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

Unified Diff: ppapi/thunk/ppb_tcp_socket_private_api.h

Issue 12220050: Provide a way to disable Nagle's algorithm on Pepper TCP sockets. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add missing completion callback implementation. Created 7 years, 10 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: ppapi/thunk/ppb_tcp_socket_private_api.h
diff --git a/ppapi/thunk/ppb_tcp_socket_private_api.h b/ppapi/thunk/ppb_tcp_socket_private_api.h
index 1311a20c1e02e30237e0097eb04d925f2453977e..dff350b09e426f90f5a6f65156104d769d1575e1 100644
--- a/ppapi/thunk/ppb_tcp_socket_private_api.h
+++ b/ppapi/thunk/ppb_tcp_socket_private_api.h
@@ -40,6 +40,9 @@ class PPAPI_THUNK_EXPORT PPB_TCPSocket_Private_API {
int32_t bytes_to_write,
scoped_refptr<TrackedCallback> callback) = 0;
virtual void Disconnect() = 0;
+ virtual int32_t SetSocketFeature(PP_TCPSocketFeature_Private name,
+ PP_Var value,
yzshen1 2013/02/08 21:51:11 wrong indent.
Wez 2013/02/10 04:47:02 Done.
+ scoped_refptr<TrackedCallback> callback) = 0;
};
} // namespace thunk

Powered by Google App Engine
This is Rietveld 408576698