| OLD | NEW |
| (Empty) |
| 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. | |
| 4 | |
| 5 #ifndef CHROME_BROWSER_CHROMEOS_DRIVE_DRIVE_FILE_SYSTEM_METADATA_H_ | |
| 6 #define CHROME_BROWSER_CHROMEOS_DRIVE_DRIVE_FILE_SYSTEM_METADATA_H_ | |
| 7 | |
| 8 #include "base/basictypes.h" | |
| 9 #include "base/time.h" | |
| 10 #include "chrome/browser/chromeos/drive/file_errors.h" | |
| 11 | |
| 12 namespace drive { | |
| 13 | |
| 14 // Metadata of DriveFileSystem. Used by DriveFileSystem::GetMetadata(). | |
| 15 struct DriveFileSystemMetadata { | |
| 16 DriveFileSystemMetadata(); | |
| 17 ~DriveFileSystemMetadata(); | |
| 18 | |
| 19 // The largest changestamp that the file system holds (may be different | |
| 20 // from the one on the server) | |
| 21 int64 largest_changestamp; | |
| 22 | |
| 23 // True if the feed is now being fetched from the server. | |
| 24 bool refreshing; | |
| 25 | |
| 26 // Time of the last update check. | |
| 27 base::Time last_update_check_time; | |
| 28 | |
| 29 // Error code of the last update check. | |
| 30 FileError last_update_check_error; | |
| 31 }; | |
| 32 | |
| 33 } // namespace drive | |
| 34 | |
| 35 #endif // CHROME_BROWSER_CHROMEOS_DRIVE_DRIVE_FILE_SYSTEM_METADATA_H_ | |
| OLD | NEW |