Index: content/browser/fileapi/chrome_blob_storage_context.cc |
=================================================================== |
--- content/browser/fileapi/chrome_blob_storage_context.cc (revision 163834) |
+++ content/browser/fileapi/chrome_blob_storage_context.cc (working copy) |
@@ -9,10 +9,10 @@ |
#include "webkit/blob/blob_storage_controller.h" |
using base::UserDataAdapter; |
-using content::BrowserContext; |
-using content::BrowserThread; |
using webkit_blob::BlobStorageController; |
+namespace content { |
+ |
static const char* kBlobStorageContextKeyName = "content_blob_storage_context"; |
tfarina
2012/10/24 21:10:40
nit: const char kBlobStorageContextKeyName[] = "co
jam
2012/10/24 21:19:48
why? i think it's easier to keep all the code (inc
|
ChromeBlobStorageContext::ChromeBlobStorageContext() {} |
@@ -51,3 +51,5 @@ |
} |
delete this; |
} |
+ |
+} // namespace content |