OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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_CHROMEOS_DRIVE_DRIVE_FILE_SYSTEM_METADATA_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_DRIVE_DRIVE_FILE_SYSTEM_METADATA_H_ |
6 #define CHROME_BROWSER_CHROMEOS_DRIVE_DRIVE_FILE_SYSTEM_METADATA_H_ | 6 #define CHROME_BROWSER_CHROMEOS_DRIVE_DRIVE_FILE_SYSTEM_METADATA_H_ |
7 | 7 |
8 #include <string> | |
9 | |
10 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
11 #include "base/time.h" | 9 #include "base/time.h" |
12 #include "chrome/browser/chromeos/drive/drive_file_error.h" | 10 #include "chrome/browser/chromeos/drive/drive_file_error.h" |
13 | 11 |
14 namespace drive { | 12 namespace drive { |
15 | 13 |
16 // Metadata of DriveFileSystem. Used by DriveFileSystem::GetMetadata(). | 14 // Metadata of DriveFileSystem. Used by DriveFileSystem::GetMetadata(). |
17 struct DriveFileSystemMetadata { | 15 struct DriveFileSystemMetadata { |
18 DriveFileSystemMetadata(); | 16 DriveFileSystemMetadata(); |
19 ~DriveFileSystemMetadata(); | 17 ~DriveFileSystemMetadata(); |
(...skipping 18 matching lines...) Expand all Loading... |
38 // Time of the last update check. | 36 // Time of the last update check. |
39 base::Time last_update_check_time; | 37 base::Time last_update_check_time; |
40 | 38 |
41 // Error code of the last update check. | 39 // Error code of the last update check. |
42 DriveFileError last_update_check_error; | 40 DriveFileError last_update_check_error; |
43 }; | 41 }; |
44 | 42 |
45 } // namespace drive | 43 } // namespace drive |
46 | 44 |
47 #endif // CHROME_BROWSER_CHROMEOS_DRIVE_DRIVE_FILE_SYSTEM_METADATA_H_ | 45 #endif // CHROME_BROWSER_CHROMEOS_DRIVE_DRIVE_FILE_SYSTEM_METADATA_H_ |
OLD | NEW |