| Index: content/browser/fileapi/chrome_blob_storage_context.h
|
| diff --git a/content/browser/fileapi/chrome_blob_storage_context.h b/content/browser/fileapi/chrome_blob_storage_context.h
|
| index 0c565459a2cf052e2e159132e972025fbe7fed73..3470c4c22001697d9ff47adc1bce8336ee288989 100644
|
| --- a/content/browser/fileapi/chrome_blob_storage_context.h
|
| +++ b/content/browser/fileapi/chrome_blob_storage_context.h
|
| @@ -35,7 +35,7 @@ class CONTENT_EXPORT ChromeBlobStorageContext
|
| : public base::RefCountedThreadSafe<ChromeBlobStorageContext,
|
| ChromeBlobStorageContextDeleter> {
|
| public:
|
| - ChromeBlobStorageContext();
|
| + explicit ChromeBlobStorageContext(bool disk_enabled);
|
|
|
| static ChromeBlobStorageContext* GetFor(
|
| BrowserContext* browser_context);
|
| @@ -66,6 +66,7 @@ class CONTENT_EXPORT ChromeBlobStorageContext
|
|
|
| void DeleteOnCorrectThread() const;
|
|
|
| + bool disk_enabled_;
|
| scoped_ptr<storage::BlobStorageContext> context_;
|
| };
|
|
|
|
|