1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef WEBKIT_FILEAPI_SYNCABLE_SYNC_FILE_METADATA_H_
6 #define WEBKIT_FILEAPI_SYNCABLE_SYNC_FILE_METADATA_H_
8 #include "base/basictypes.h"
10 #include "webkit/fileapi/file_system_url.h"
11 #include "webkit/fileapi/syncable/file_change.h"
12 #include "webkit/storage/webkit_storage_export.h"
14 namespace sync_file_system
{
16 class WEBKIT_STORAGE_EXPORT SyncFileMetadata
{
19 SyncFileMetadata(SyncFileType file_type
,
21 const base::Time
& last_modified
);
24 SyncFileType file_type
;
26 base::Time last_modified
;
28 bool operator==(const SyncFileMetadata
& that
) const;
31 struct WEBKIT_STORAGE_EXPORT LocalFileSyncInfo
{
35 fileapi::FileSystemURL url
;
36 base::FilePath local_file_path
;
37 SyncFileMetadata metadata
;
38 FileChangeList changes
;
41 } // namespace sync_file_system
43 #endif // WEBKIT_FILEAPI_SYNCABLE_SYNC_FILE_METADATA_H_