mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
35 lines
958 B
C++
35 lines
958 B
C++
|
// Copyright (c) 2013 The Chromium Authors. All rights reserved.
|
||
|
// Use of this source code is governed by a BSD-style license that can be
|
||
|
// found in the LICENSE file.
|
||
|
|
||
|
#include "net/spdy/spdy_buffer_producer.h"
|
||
|
|
||
|
#include <utility>
|
||
|
|
||
|
#include "base/logging.h"
|
||
|
#include "base/trace_event/memory_usage_estimator.h"
|
||
|
#include "net/spdy/spdy_buffer.h"
|
||
|
#include "net/third_party/spdy/core/spdy_protocol.h"
|
||
|
|
||
|
namespace net {
|
||
|
|
||
|
SpdyBufferProducer::SpdyBufferProducer() = default;
|
||
|
|
||
|
SpdyBufferProducer::~SpdyBufferProducer() = default;
|
||
|
|
||
|
SimpleBufferProducer::SimpleBufferProducer(std::unique_ptr<SpdyBuffer> buffer)
|
||
|
: buffer_(std::move(buffer)) {}
|
||
|
|
||
|
SimpleBufferProducer::~SimpleBufferProducer() = default;
|
||
|
|
||
|
std::unique_ptr<SpdyBuffer> SimpleBufferProducer::ProduceBuffer() {
|
||
|
DCHECK(buffer_);
|
||
|
return std::move(buffer_);
|
||
|
}
|
||
|
|
||
|
size_t SimpleBufferProducer::EstimateMemoryUsage() const {
|
||
|
return base::trace_event::EstimateMemoryUsage(buffer_);
|
||
|
}
|
||
|
|
||
|
} // namespace net
|