| Index: blimp/common/blob_cache/blob_cache.h
|
| diff --git a/blimp/common/blob_cache/blob_cache.h b/blimp/common/blob_cache/blob_cache.h
|
| index 45c9eb9de438a9986e46f6b1a9152df86cae3dad..f421ec2a00c4cad5f48b4aa906a3a7ab9ad4a677 100644
|
| --- a/blimp/common/blob_cache/blob_cache.h
|
| +++ b/blimp/common/blob_cache/blob_cache.h
|
| @@ -14,8 +14,8 @@
|
| namespace blimp {
|
|
|
| using BlobId = std::string;
|
| -using BlobData = base::RefCountedData<const std::string>;
|
| -using BlobDataPtr = scoped_refptr<BlobData>;
|
| +using BlobData = base::RefCountedData<std::string>;
|
| +using BlobDataPtr = scoped_refptr<const BlobData>;
|
|
|
| // An interface for a cache of blobs.
|
| class BLIMP_COMMON_EXPORT BlobCache {
|
|
|