| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "ppapi/proxy/tcp_socket_resource_constants.h" |
| 6 |
| 7 namespace ppapi { |
| 8 namespace proxy { |
| 9 |
| 10 const int32_t TCPSocketResourceConstants::kMaxReadSize = 1024 * 1024; |
| 11 const int32_t TCPSocketResourceConstants::kMaxWriteSize = 1024 * 1024; |
| 12 const int32_t TCPSocketResourceConstants::kMaxSendBufferSize = |
| 13 1024 * TCPSocketResourceConstants::kMaxWriteSize; |
| 14 const int32_t TCPSocketResourceConstants::kMaxReceiveBufferSize = |
| 15 1024 * TCPSocketResourceConstants::kMaxReadSize; |
| 16 |
| 17 } // namespace proxy |
| 18 } // namespace ppapi |
| OLD | NEW |