chromium/storage/browser/blob/blob_handle.h

// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef STORAGE_BROWSER_BLOB_BLOB_HANDLE_H_
#define STORAGE_BROWSER_BLOB_BLOB_HANDLE_H_

#include "base/component_export.h"
#include "base/memory/ref_counted.h"
#include "mojo/public/cpp/bindings/pending_remote.h"
#include "mojo/public/cpp/bindings/remote.h"
#include "third_party/blink/public/mojom/blob/blob.mojom.h"

namespace storage {

// Refcounted wrapper around a mojom::Blob.
class COMPONENT_EXPORT(STORAGE_BROWSER) BlobHandle
    : public base::RefCounted<BlobHandle> {};

}  // namespace storage

#endif  // STORAGE_BROWSER_BLOB_BLOB_HANDLE_H_