| Index: content/browser/fileapi/chrome_blob_storage_context.cc
|
| ===================================================================
|
| --- content/browser/fileapi/chrome_blob_storage_context.cc (revision 290677)
|
| +++ content/browser/fileapi/chrome_blob_storage_context.cc (working copy)
|
| @@ -19,9 +19,11 @@
|
|
|
| namespace {
|
|
|
| +const char kBlobStorageContextKeyName[] = "content_blob_storage_context";
|
| +
|
| class BlobHandleImpl : public BlobHandle {
|
| public:
|
| - BlobHandleImpl(scoped_ptr<webkit_blob::BlobDataHandle> handle)
|
| + explicit BlobHandleImpl(scoped_ptr<webkit_blob::BlobDataHandle> handle)
|
| : handle_(handle.Pass()) {
|
| }
|
|
|
| @@ -37,8 +39,6 @@
|
|
|
| } // namespace
|
|
|
| -static const char* kBlobStorageContextKeyName = "content_blob_storage_context";
|
| -
|
| ChromeBlobStorageContext::ChromeBlobStorageContext() {}
|
|
|
| ChromeBlobStorageContext* ChromeBlobStorageContext::GetFor(
|
|
|