// Copyright 2015 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_STORAGE_REGISTRY_H_ #define STORAGE_BROWSER_BLOB_BLOB_STORAGE_REGISTRY_H_ #include <stddef.h> #include <map> #include <memory> #include <string> #include <unordered_map> #include <vector> #include "base/component_export.h" #include "storage/browser/blob/blob_storage_constants.h" namespace storage { class BlobEntry; // This class stores the blob data in the various states of construction. // Implementation notes: // * When removing a uuid registration, we do not check for URL mappings to that // uuid. The user must keep track of these. class COMPONENT_EXPORT(STORAGE_BROWSER) BlobStorageRegistry { … }; } // namespace storage #endif // STORAGE_BROWSER_BLOB_BLOB_STORAGE_REGISTRY_H_