| Index: content/browser/fileapi/chrome_blob_storage_context.cc
|
| ===================================================================
|
| --- content/browser/fileapi/chrome_blob_storage_context.cc (revision 183651)
|
| +++ content/browser/fileapi/chrome_blob_storage_context.cc (working copy)
|
| @@ -7,10 +7,10 @@
|
| #include "base/bind.h"
|
| #include "content/public/browser/browser_context.h"
|
| #include "content/public/browser/browser_thread.h"
|
| -#include "webkit/blob/blob_storage_controller.h"
|
| +#include "webkit/blob/blob_storage_context.h"
|
|
|
| using base::UserDataAdapter;
|
| -using webkit_blob::BlobStorageController;
|
| +using webkit_blob::BlobStorageContext;
|
|
|
| namespace content {
|
|
|
| @@ -39,7 +39,7 @@
|
|
|
| void ChromeBlobStorageContext::InitializeOnIOThread() {
|
| DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
|
| - controller_.reset(new BlobStorageController());
|
| + context_.reset(new BlobStorageContext());
|
| }
|
|
|
| ChromeBlobStorageContext::~ChromeBlobStorageContext() {}
|
|
|