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

Unified Diff: webkit/fileapi/file_system_origin_database.cc

Issue 7057032: Integrated obfuscation with quota; all unit tests now pass (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Eliminated a vector copy Created 9 years, 7 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: webkit/fileapi/file_system_origin_database.cc
diff --git a/webkit/fileapi/file_system_origin_database.cc b/webkit/fileapi/file_system_origin_database.cc
index f028cdc7602e53f597d7da9a06bd9c8b017835e3..ca267e856a53a6f6d87b961f1a9c485dc1a16aef 100644
--- a/webkit/fileapi/file_system_origin_database.cc
+++ b/webkit/fileapi/file_system_origin_database.cc
@@ -31,6 +31,17 @@ const char* LastPathKey() {
namespace fileapi {
+FileSystemOriginDatabase::OriginRecord::OriginRecord() {
+}
+
+FileSystemOriginDatabase::OriginRecord::OriginRecord(
+ const std::string& origin_in, const FilePath& path_in)
+ : origin(origin_in), path(path_in) {
+}
+
+FileSystemOriginDatabase::OriginRecord::~OriginRecord() {
+}
+
FileSystemOriginDatabase::FileSystemOriginDatabase(const FilePath& path) {
#if defined(OS_POSIX)
path_ = path.value();
« no previous file with comments | « webkit/fileapi/file_system_origin_database.h ('k') | webkit/fileapi/file_system_origin_database_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698