summaryrefslogtreecommitdiff
path: root/src/stream_base-inl.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/stream_base-inl.h')
-rw-r--r--src/stream_base-inl.h15
1 files changed, 3 insertions, 12 deletions
diff --git a/src/stream_base-inl.h b/src/stream_base-inl.h
index 7db8403ced..9cff67cd9f 100644
--- a/src/stream_base-inl.h
+++ b/src/stream_base-inl.h
@@ -419,18 +419,9 @@ inline void ShutdownWrap::OnDone(int status) {
Dispose();
}
-inline void WriteWrap::SetAllocatedStorage(char* data, size_t size) {
- CHECK_NULL(storage_);
- storage_ = data;
- storage_size_ = size;
-}
-
-inline char* WriteWrap::Storage() {
- return storage_;
-}
-
-inline size_t WriteWrap::StorageSize() const {
- return storage_size_;
+inline void WriteWrap::SetAllocatedStorage(AllocatedBuffer&& storage) {
+ CHECK_NULL(storage_.data());
+ storage_ = std::move(storage);
}
inline void WriteWrap::OnDone(int status) {