Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(295)

Side by Side Diff: chrome/browser/chromeos/drive/drive_file_system_metadata.h

Issue 12229002: Misc cleanups in Drive code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698