// Copyright 2014 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "storage/browser/test/mock_blob_util.h" #include <memory> #include "storage/browser/blob/blob_data_builder.h" #include "storage/browser/blob/blob_storage_context.h" namespace storage { ScopedTextBlob::ScopedTextBlob(BlobStorageContext* context, const std::string& blob_id, const std::string& data) : … { … } ScopedTextBlob::~ScopedTextBlob() = default; std::unique_ptr<BlobDataHandle> ScopedTextBlob::GetBlobDataHandle() { … } } // namespace storage