1 // Copyright 2013 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 CHROME_BROWSER_SYNC_FILE_SYSTEM_SYNC_FILE_METADATA_H_
6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_SYNC_FILE_METADATA_H_
8 #include "base/basictypes.h"
9 #include "base/time/time.h"
10 #include "chrome/browser/sync_file_system/file_change.h"
11 #include "storage/browser/fileapi/file_system_url.h"
13 namespace sync_file_system
{
15 class SyncFileMetadata
{
18 SyncFileMetadata(SyncFileType file_type
,
20 const base::Time
& last_modified
);
23 SyncFileType file_type
;
25 base::Time last_modified
;
27 bool operator==(const SyncFileMetadata
& that
) const;
30 struct LocalFileSyncInfo
{
34 storage::FileSystemURL url
;
35 base::FilePath local_file_path
;
36 SyncFileMetadata metadata
;
37 FileChangeList changes
;
40 } // namespace sync_file_system
42 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_SYNC_FILE_METADATA_H_