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

Side by Side Diff: ppapi/proxy/ppb_tcp_socket_private_proxy.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: Rebase. 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ppapi/proxy/ppapi_messages.h ('k') | ppapi/proxy/ppb_tcp_socket_private_proxy.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef PPAPI_PROXY_PPB_TCP_SOCKET_PRIVATE_PROXY_H_ 5 #ifndef PPAPI_PROXY_PPB_TCP_SOCKET_PRIVATE_PROXY_H_
6 #define PPAPI_PROXY_PPB_TCP_SOCKET_PRIVATE_PROXY_H_ 6 #define PPAPI_PROXY_PPB_TCP_SOCKET_PRIVATE_PROXY_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 bool succeeded, 50 bool succeeded,
51 const PPB_X509Certificate_Fields& certificate_fields); 51 const PPB_X509Certificate_Fields& certificate_fields);
52 void OnMsgReadACK(uint32 plugin_dispatcher_id, 52 void OnMsgReadACK(uint32 plugin_dispatcher_id,
53 uint32 socket_id, 53 uint32 socket_id,
54 bool succeeded, 54 bool succeeded,
55 const std::string& data); 55 const std::string& data);
56 void OnMsgWriteACK(uint32 plugin_dispatcher_id, 56 void OnMsgWriteACK(uint32 plugin_dispatcher_id,
57 uint32 socket_id, 57 uint32 socket_id,
58 bool succeeded, 58 bool succeeded,
59 int32_t bytes_written); 59 int32_t bytes_written);
60 void OnMsgSetBoolOptionACK(uint32 plugin_dispatcher_id,
61 uint32 socket_id,
62 bool succeeded);
60 63
61 DISALLOW_COPY_AND_ASSIGN(PPB_TCPSocket_Private_Proxy); 64 DISALLOW_COPY_AND_ASSIGN(PPB_TCPSocket_Private_Proxy);
62 }; 65 };
63 66
64 } // namespace proxy 67 } // namespace proxy
65 } // namespace ppapi 68 } // namespace ppapi
66 69
67 #endif // PPAPI_PROXY_PPB_TCP_SOCKET_PRIVATE_PROXY_H_ 70 #endif // PPAPI_PROXY_PPB_TCP_SOCKET_PRIVATE_PROXY_H_
OLDNEW
« no previous file with comments | « ppapi/proxy/ppapi_messages.h ('k') | ppapi/proxy/ppb_tcp_socket_private_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698