diff options
Diffstat (limited to 'webkit/fileapi/file_system_origin_database.h')
-rw-r--r-- | webkit/fileapi/file_system_origin_database.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/webkit/fileapi/file_system_origin_database.h b/webkit/fileapi/file_system_origin_database.h index 1a28082..885d165 100644 --- a/webkit/fileapi/file_system_origin_database.h +++ b/webkit/fileapi/file_system_origin_database.h @@ -19,7 +19,14 @@ namespace fileapi { // the browser's FILE thread. The constructor may be used on any thread. class FileSystemOriginDatabase { public: - typedef std::pair<std::string, FilePath> OriginRecord; + struct OriginRecord { + std::string origin; + FilePath path; + + OriginRecord(); + OriginRecord(const std::string& origin, const FilePath& path); + ~OriginRecord(); + }; // Only one instance of FileSystemOriginDatabase should exist for a given path // at a given time. |