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>; |
Wez
2016/05/20 21:46:17
This seems peculiar - I think it's worth an explan
Kevin M
2016/05/23 20:48:07
Done.
|
// An interface for a cache of blobs. |
class BLIMP_COMMON_EXPORT BlobCache { |