blob: a985ec228a1c39c8972f40aa6694f53da1d6f9fd [file] [log] [blame]
// Copyright 2014 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.
#ifndef STORAGE_BROWSER_TEST_MOCK_BLOB_UTIL_H_
#define STORAGE_BROWSER_TEST_MOCK_BLOB_UTIL_H_
#include <string>
#include "base/macros.h"
namespace storage {
class BlobDataHandle;
class BlobStorageContext;
class ScopedTextBlob {
public:
// Registers a blob with the given |id| that contains |data|.
ScopedTextBlob(BlobStorageContext* context,
const std::string& blob_id,
const std::string& data);
~ScopedTextBlob();
// Returns a BlobDataHandle referring to the scoped blob.
std::unique_ptr<BlobDataHandle> GetBlobDataHandle();
private:
const std::string blob_id_;
BlobStorageContext* context_;
std::unique_ptr<BlobDataHandle> handle_;
DISALLOW_COPY_AND_ASSIGN(ScopedTextBlob);
};
} // namespace storage
#endif // STORAGE_BROWSER_TEST_MOCK_BLOB_UTIL_H_