| 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_GDATA_DRIVE_FILES_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_GDATA_DRIVE_FILES_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_GDATA_DRIVE_FILES_H_ | 6 #define CHROME_BROWSER_CHROMEOS_GDATA_DRIVE_FILES_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "base/callback_forward.h" | 13 #include "base/callback_forward.h" |
| 14 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
| 15 #include "base/memory/weak_ptr.h" | 15 #include "base/memory/weak_ptr.h" |
| 16 #include "base/platform_file.h" | 16 #include "base/platform_file.h" |
| 17 #include "chrome/browser/chromeos/gdata/drive.pb.h" | 17 #include "chrome/browser/chromeos/gdata/drive.pb.h" |
| 18 #include "chrome/browser/chromeos/gdata/gdata_wapi_parser.h" | 18 #include "chrome/browser/google_apis/gdata_wapi_parser.h" |
| 19 | 19 |
| 20 namespace gdata { | 20 namespace gdata { |
| 21 | 21 |
| 22 class DriveDirectory; | 22 class DriveDirectory; |
| 23 class DriveDirectoryProto; | 23 class DriveDirectoryProto; |
| 24 class DriveEntryProto; | 24 class DriveEntryProto; |
| 25 class DriveFile; | 25 class DriveFile; |
| 26 class DriveResourceMetadata; | 26 class DriveResourceMetadata; |
| 27 class PlatformFileInfoProto; | 27 class PlatformFileInfoProto; |
| 28 | 28 |
| (...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 272 // Collection of children. | 272 // Collection of children. |
| 273 ChildMap child_files_; | 273 ChildMap child_files_; |
| 274 ChildMap child_directories_; | 274 ChildMap child_directories_; |
| 275 | 275 |
| 276 DISALLOW_COPY_AND_ASSIGN(DriveDirectory); | 276 DISALLOW_COPY_AND_ASSIGN(DriveDirectory); |
| 277 }; | 277 }; |
| 278 | 278 |
| 279 } // namespace gdata | 279 } // namespace gdata |
| 280 | 280 |
| 281 #endif // CHROME_BROWSER_CHROMEOS_GDATA_DRIVE_FILES_H_ | 281 #endif // CHROME_BROWSER_CHROMEOS_GDATA_DRIVE_FILES_H_ |
| OLD | NEW |