Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(549)

Unified Diff: content/browser/fileapi/chrome_blob_storage_context.h

Issue 11410019: ********** Chromium Blob hacking (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 {

Powered by Google App Engine
This is Rietveld 408576698