OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_SYNC_FILE_SYSTEM_SYNC_FILE_METADATA_H_ | 5 #ifndef CHROME_BROWSER_SYNC_FILE_SYSTEM_SYNC_FILE_METADATA_H_ |
6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_SYNC_FILE_METADATA_H_ | 6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_SYNC_FILE_METADATA_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/time/time.h" | 9 #include "base/time/time.h" |
10 #include "chrome/browser/sync_file_system/file_change.h" | 10 #include "chrome/browser/sync_file_system/file_change.h" |
(...skipping 13 matching lines...) Expand all Loading... |
24 int64 size; | 24 int64 size; |
25 base::Time last_modified; | 25 base::Time last_modified; |
26 | 26 |
27 bool operator==(const SyncFileMetadata& that) const; | 27 bool operator==(const SyncFileMetadata& that) const; |
28 }; | 28 }; |
29 | 29 |
30 struct LocalFileSyncInfo { | 30 struct LocalFileSyncInfo { |
31 LocalFileSyncInfo(); | 31 LocalFileSyncInfo(); |
32 ~LocalFileSyncInfo(); | 32 ~LocalFileSyncInfo(); |
33 | 33 |
34 fileapi::FileSystemURL url; | 34 storage::FileSystemURL url; |
35 base::FilePath local_file_path; | 35 base::FilePath local_file_path; |
36 SyncFileMetadata metadata; | 36 SyncFileMetadata metadata; |
37 FileChangeList changes; | 37 FileChangeList changes; |
38 }; | 38 }; |
39 | 39 |
40 } // namespace sync_file_system | 40 } // namespace sync_file_system |
41 | 41 |
42 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_SYNC_FILE_METADATA_H_ | 42 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_SYNC_FILE_METADATA_H_ |
OLD | NEW |