| 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 COMPONENTS_DRIVE_CHROMEOS_FILE_SYSTEM_H_ | 5 #ifndef COMPONENTS_DRIVE_CHROMEOS_FILE_SYSTEM_H_ |
| 6 #define COMPONENTS_DRIVE_CHROMEOS_FILE_SYSTEM_H_ | 6 #define COMPONENTS_DRIVE_CHROMEOS_FILE_SYSTEM_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 } // namespace base | 29 } // namespace base |
| 30 | 30 |
| 31 namespace google_apis { | 31 namespace google_apis { |
| 32 class AboutResource; | 32 class AboutResource; |
| 33 class ResourceEntry; | 33 class ResourceEntry; |
| 34 } // namespace google_apis | 34 } // namespace google_apis |
| 35 | 35 |
| 36 namespace drive { | 36 namespace drive { |
| 37 struct ClientContext; | 37 struct ClientContext; |
| 38 class EventLogger; | 38 class EventLogger; |
| 39 class FileCacheEntry; | |
| 40 class FileSystemObserver; | 39 class FileSystemObserver; |
| 41 class JobScheduler; | 40 class JobScheduler; |
| 42 | 41 |
| 43 namespace internal { | 42 namespace internal { |
| 44 class AboutResourceLoader; | 43 class AboutResourceLoader; |
| 45 class ChangeListLoader; | 44 class ChangeListLoader; |
| 46 class DirectoryLoader; | 45 class DirectoryLoader; |
| 47 class FileCache; | 46 class FileCache; |
| 48 class LoaderController; | 47 class LoaderController; |
| 49 class ResourceMetadata; | 48 class ResourceMetadata; |
| (...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 308 // Note: This should remain the last member so it'll be destroyed and | 307 // Note: This should remain the last member so it'll be destroyed and |
| 309 // invalidate the weak pointers before any other members are destroyed. | 308 // invalidate the weak pointers before any other members are destroyed. |
| 310 base::WeakPtrFactory<FileSystem> weak_ptr_factory_; | 309 base::WeakPtrFactory<FileSystem> weak_ptr_factory_; |
| 311 | 310 |
| 312 DISALLOW_COPY_AND_ASSIGN(FileSystem); | 311 DISALLOW_COPY_AND_ASSIGN(FileSystem); |
| 313 }; | 312 }; |
| 314 | 313 |
| 315 } // namespace drive | 314 } // namespace drive |
| 316 | 315 |
| 317 #endif // COMPONENTS_DRIVE_CHROMEOS_FILE_SYSTEM_H_ | 316 #endif // COMPONENTS_DRIVE_CHROMEOS_FILE_SYSTEM_H_ |
| OLD | NEW |