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

Unified Diff: webkit/common/blob/shareable_file_reference.cc

Issue 492873002: Collapse fileapi, webkit_blob, webkit_database, quota, and webkit_common namespaces into single sto… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix chromeos build Created 6 years, 4 months 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
« no previous file with comments | « webkit/common/blob/shareable_file_reference.h ('k') | webkit/common/data_element.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/common/blob/shareable_file_reference.cc
diff --git a/webkit/common/blob/shareable_file_reference.cc b/webkit/common/blob/shareable_file_reference.cc
index b9db348e56130149569c59c781c6eaf291f9f27c..93d0631ee9afdc1c68df752e4546898c1c870a05 100644
--- a/webkit/common/blob/shareable_file_reference.cc
+++ b/webkit/common/blob/shareable_file_reference.cc
@@ -11,7 +11,7 @@
#include "base/task_runner.h"
#include "base/threading/non_thread_safe.h"
-namespace webkit_blob {
+namespace storage {
namespace {
@@ -85,7 +85,7 @@ scoped_refptr<ShareableFileReference> ShareableFileReference::GetOrCreate(
typedef std::pair<ShareableFileMap::iterator, bool> InsertResult;
// Required for VS2010: http://connect.microsoft.com/VisualStudio/feedback/details/520043/error-converting-from-null-to-a-pointer-type-in-std-pair
- webkit_blob::ShareableFileReference* null_reference = NULL;
+ storage::ShareableFileReference* null_reference = NULL;
InsertResult result = g_file_map.Get().Insert(
ShareableFileMap::value_type(scoped_file.path(), null_reference));
if (result.second == false) {
@@ -116,4 +116,4 @@ ShareableFileReference::~ShareableFileReference() {
g_file_map.Get().Erase(path());
}
-} // namespace webkit_blob
+} // namespace storage
« no previous file with comments | « webkit/common/blob/shareable_file_reference.h ('k') | webkit/common/data_element.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698