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

Unified Diff: storage/browser/fileapi/sandbox_origin_database_interface.cc

Issue 442383002: Move storage-related files from webkit/ to new top-level directory storage/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . 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
Index: storage/browser/fileapi/sandbox_origin_database_interface.cc
diff --git a/webkit/browser/fileapi/sandbox_origin_database_interface.cc b/storage/browser/fileapi/sandbox_origin_database_interface.cc
similarity index 68%
rename from webkit/browser/fileapi/sandbox_origin_database_interface.cc
rename to storage/browser/fileapi/sandbox_origin_database_interface.cc
index e2f80c58b321c664ab48f25334bd568dbb5df10f..50ebb794c3d17223406634b451e6aad04f54f303 100644
--- a/webkit/browser/fileapi/sandbox_origin_database_interface.cc
+++ b/storage/browser/fileapi/sandbox_origin_database_interface.cc
@@ -2,19 +2,20 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "webkit/browser/fileapi/sandbox_origin_database_interface.h"
+#include "storage/browser/fileapi/sandbox_origin_database_interface.h"
-namespace fileapi {
+namespace storage {
SandboxOriginDatabaseInterface::OriginRecord::OriginRecord() {
}
SandboxOriginDatabaseInterface::OriginRecord::OriginRecord(
- const std::string& origin_in, const base::FilePath& path_in)
+ const std::string& origin_in,
+ const base::FilePath& path_in)
: origin(origin_in), path(path_in) {
}
SandboxOriginDatabaseInterface::OriginRecord::~OriginRecord() {
}
-} // namespace fileapi
+} // namespace storage

Powered by Google App Engine
This is Rietveld 408576698