| Index: net/quic/quic_simple_buffer_allocator.cc
|
| diff --git a/net/quic/quic_simple_buffer_allocator.cc b/net/quic/quic_simple_buffer_allocator.cc
|
| index 5dae280d7e3a7362e9d799998f6c0fd4cba14939..991b2dbb341d9beaa30f1cd53456473d2b3e390b 100644
|
| --- a/net/quic/quic_simple_buffer_allocator.cc
|
| +++ b/net/quic/quic_simple_buffer_allocator.cc
|
| @@ -5,11 +5,14 @@
|
| #include "net/quic/quic_simple_buffer_allocator.h"
|
|
|
| namespace net {
|
| -
|
| char* SimpleBufferAllocator::New(size_t size) {
|
| return new char[size];
|
| }
|
|
|
| +char* SimpleBufferAllocator::New(size_t size, bool /* flag_enable */) {
|
| + return New(size);
|
| +}
|
| +
|
| void SimpleBufferAllocator::Delete(char* buffer) {
|
| delete[] buffer;
|
| }
|
|
|