#ifndef CONTENT_BROWSER_BLOB_STORAGE_BLOB_REGISTRY_WRAPPER_H_
#define CONTENT_BROWSER_BLOB_STORAGE_BLOB_REGISTRY_WRAPPER_H_
#include "base/memory/ref_counted.h"
#include "content/public/browser/browser_thread.h"
#include "third_party/blink/public/mojom/blob/blob_registry.mojom.h"
namespace storage {
class BlobRegistryImpl;
class BlobUrlRegistry;
}
namespace content {
class ChromeBlobStorageContext;
class BlobRegistryWrapper
: public base::RefCountedThreadSafe<BlobRegistryWrapper,
BrowserThread::DeleteOnIOThread> { … };
}
#endif