Index: content/browser/fileapi/blob_storage_host.cc |
diff --git a/webkit/browser/blob/blob_storage_host.cc b/content/browser/fileapi/blob_storage_host.cc |
similarity index 95% |
rename from webkit/browser/blob/blob_storage_host.cc |
rename to content/browser/fileapi/blob_storage_host.cc |
index c253a82e8d552faf060dabe4800557dc350f06b5..dbb2825dced25ee21f6353f9a0608c24003f147c 100644 |
--- a/webkit/browser/blob/blob_storage_host.cc |
+++ b/content/browser/fileapi/blob_storage_host.cc |
@@ -2,7 +2,7 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-#include "webkit/browser/blob/blob_storage_host.h" |
+#include "content/browser/fileapi/blob_storage_host.h" |
#include "base/sequenced_task_runner.h" |
#include "base/strings/string_util.h" |
@@ -10,7 +10,10 @@ |
#include "webkit/browser/blob/blob_data_handle.h" |
#include "webkit/browser/blob/blob_storage_context.h" |
-namespace webkit_blob { |
+using webkit_blob::BlobStorageContext; |
+using webkit_blob::BlobData; |
+ |
+namespace content { |
BlobStorageHost::BlobStorageHost(BlobStorageContext* context) |
: context_(context->AsWeakPtr()) { |
@@ -111,4 +114,4 @@ bool BlobStorageHost::IsUrlRegisteredInHost(const GURL& blob_url) { |
return public_blob_urls_.find(blob_url) != public_blob_urls_.end(); |
} |
-} // namespace webkit_blob |
+} // namespace content |