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

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

Issue 524983002: Move fileapi-related files from webkit/common/ to storage/common/ and set up redirect headers (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix presubmit Created 6 years, 3 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 | « storage/common/blob/shareable_file_reference.h ('k') | storage/common/data_element.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: storage/common/blob/shareable_file_reference.cc
diff --git a/webkit/common/blob/shareable_file_reference.cc b/storage/common/blob/shareable_file_reference.cc
similarity index 93%
rename from webkit/common/blob/shareable_file_reference.cc
rename to storage/common/blob/shareable_file_reference.cc
index 93d0631ee9afdc1c68df752e4546898c1c870a05..c2ec839637e7a9906d610e16597798809d9db43e 100644
--- a/webkit/common/blob/shareable_file_reference.cc
+++ b/storage/common/blob/shareable_file_reference.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/common/blob/shareable_file_reference.h"
+#include "storage/common/blob/shareable_file_reference.h"
#include <map>
@@ -84,7 +84,9 @@ scoped_refptr<ShareableFileReference> ShareableFileReference::GetOrCreate(
return scoped_refptr<ShareableFileReference>();
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
+ // Required for VS2010:
+ // http://connect.microsoft.com/VisualStudio/feedback/
+ // details/520043/error-converting-from-null-to-a-pointer-type-in-std-pair
storage::ShareableFileReference* null_reference = NULL;
InsertResult result = g_file_map.Get().Insert(
ShareableFileMap::value_type(scoped_file.path(), null_reference));
« no previous file with comments | « storage/common/blob/shareable_file_reference.h ('k') | storage/common/data_element.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698