| Index: content/browser/fileapi/chrome_blob_storage_context.h
|
| ===================================================================
|
| --- content/browser/fileapi/chrome_blob_storage_context.h (revision 171309)
|
| +++ content/browser/fileapi/chrome_blob_storage_context.h (working copy)
|
| @@ -12,7 +12,7 @@
|
| #include "content/public/browser/browser_thread.h"
|
|
|
| namespace webkit_blob {
|
| -class BlobStorageController;
|
| +class BlobStorageContext;
|
| }
|
|
|
| namespace content {
|
| @@ -37,8 +37,8 @@
|
|
|
| void InitializeOnIOThread();
|
|
|
| - webkit_blob::BlobStorageController* controller() const {
|
| - return controller_.get();
|
| + webkit_blob::BlobStorageContext* context() const {
|
| + return context_.get();
|
| }
|
|
|
| protected:
|
| @@ -52,7 +52,7 @@
|
|
|
| void DeleteOnCorrectThread() const;
|
|
|
| - scoped_ptr<webkit_blob::BlobStorageController> controller_;
|
| + scoped_ptr<webkit_blob::BlobStorageContext> context_;
|
| };
|
|
|
| struct ChromeBlobStorageContextDeleter {
|
|
|