| 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_SYSTEM_SERVICE_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_DRIVE_DRIVE_SYSTEM_SERVICE_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_DRIVE_DRIVE_SYSTEM_SERVICE_H_ | 6 #define CHROME_BROWSER_CHROMEOS_DRIVE_DRIVE_SYSTEM_SERVICE_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| 11 #include "base/memory/singleton.h" | 11 #include "base/memory/singleton.h" |
| 12 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
| 13 #include "base/threading/sequenced_worker_pool.h" | 13 #include "base/threading/sequenced_worker_pool.h" |
| 14 #include "chrome/browser/chromeos/drive/drive_file_error.h" | 14 #include "chrome/browser/chromeos/drive/drive_file_error.h" |
| 15 #include "chrome/browser/profiles/profile_keyed_service.h" | 15 #include "chrome/browser/profiles/profile_keyed_service.h" |
| 16 #include "chrome/browser/profiles/profile_keyed_service_factory.h" | 16 #include "chrome/browser/profiles/profile_keyed_service_factory.h" |
| 17 | 17 |
| 18 class FilePath; | 18 class FilePath; |
| 19 | 19 |
| 20 namespace gdata { | 20 namespace drive { |
| 21 | 21 |
| 22 class DriveCache; | 22 class DriveCache; |
| 23 class DriveDownloadObserver; | 23 class DriveDownloadObserver; |
| 24 class DriveFileSystemInterface; | 24 class DriveFileSystemInterface; |
| 25 class DriveServiceInterface; | 25 class DriveServiceInterface; |
| 26 class DriveUploader; | 26 class DriveUploader; |
| 27 class DriveWebAppsRegistry; | 27 class DriveWebAppsRegistry; |
| 28 class FileWriteHelper; | 28 class FileWriteHelper; |
| 29 class DriveSyncClient; | 29 class DriveSyncClient; |
| 30 class StaleCacheFilesRemover; | 30 class StaleCacheFilesRemover; |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 friend struct DefaultSingletonTraits<DriveSystemServiceFactory>; | 128 friend struct DefaultSingletonTraits<DriveSystemServiceFactory>; |
| 129 | 129 |
| 130 DriveSystemServiceFactory(); | 130 DriveSystemServiceFactory(); |
| 131 virtual ~DriveSystemServiceFactory(); | 131 virtual ~DriveSystemServiceFactory(); |
| 132 | 132 |
| 133 // ProfileKeyedServiceFactory: | 133 // ProfileKeyedServiceFactory: |
| 134 virtual ProfileKeyedService* BuildServiceInstanceFor( | 134 virtual ProfileKeyedService* BuildServiceInstanceFor( |
| 135 Profile* profile) const OVERRIDE; | 135 Profile* profile) const OVERRIDE; |
| 136 }; | 136 }; |
| 137 | 137 |
| 138 } // namespace gdata | 138 } // namespace drive |
| 139 | 139 |
| 140 #endif // CHROME_BROWSER_CHROMEOS_DRIVE_DRIVE_SYSTEM_SERVICE_H_ | 140 #endif // CHROME_BROWSER_CHROMEOS_DRIVE_DRIVE_SYSTEM_SERVICE_H_ |
| OLD | NEW |