| 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_GDATA_SYSTEM_SERVICE_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_GDATA_GDATA_SYSTEM_SERVICE_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_GDATA_GDATA_SYSTEM_SERVICE_H_ | 6 #define CHROME_BROWSER_CHROMEOS_GDATA_GDATA_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/gdata/gdata_errorcode.h" | 14 #include "chrome/browser/chromeos/gdata/gdata_errorcode.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 gdata { |
| 21 | 21 |
| 22 class DriveCache; |
| 22 class DriveServiceInterface; | 23 class DriveServiceInterface; |
| 23 class DriveWebAppsRegistry; | 24 class DriveWebAppsRegistry; |
| 24 class FileWriteHelper; | 25 class FileWriteHelper; |
| 25 class GDataCache; | |
| 26 class GDataContactsService; | 26 class GDataContactsService; |
| 27 class GDataDownloadObserver; | 27 class GDataDownloadObserver; |
| 28 class GDataFileSystemInterface; | 28 class GDataFileSystemInterface; |
| 29 class GDataSyncClient; | 29 class GDataSyncClient; |
| 30 class GDataUploader; | 30 class GDataUploader; |
| 31 | 31 |
| 32 // GDataSystemService runs the GData system, including the GData file system | 32 // GDataSystemService runs the GData system, including the GData file system |
| 33 // implementation for the file manager, and some other sub systems. | 33 // implementation for the file manager, and some other sub systems. |
| 34 // | 34 // |
| 35 // The class is essentially a container that manages lifetime of the objects | 35 // The class is essentially a container that manages lifetime of the objects |
| 36 // that are used to run the GData system. The GDataSystemService object is | 36 // that are used to run the GData system. The GDataSystemService object is |
| 37 // created per-profile. | 37 // created per-profile. |
| 38 class GDataSystemService : public ProfileKeyedService { | 38 class GDataSystemService : public ProfileKeyedService { |
| 39 public: | 39 public: |
| 40 DriveServiceInterface* drive_service() { return drive_service_.get(); } | 40 DriveServiceInterface* drive_service() { return drive_service_.get(); } |
| 41 GDataCache* cache() { return cache_; } | 41 DriveCache* cache() { return cache_; } |
| 42 GDataFileSystemInterface* file_system() { return file_system_.get(); } | 42 GDataFileSystemInterface* file_system() { return file_system_.get(); } |
| 43 FileWriteHelper* file_write_helper() { return file_write_helper_.get(); } | 43 FileWriteHelper* file_write_helper() { return file_write_helper_.get(); } |
| 44 GDataUploader* uploader() { return uploader_.get(); } | 44 GDataUploader* uploader() { return uploader_.get(); } |
| 45 GDataContactsService* contacts_service() { return contacts_service_.get(); } | 45 GDataContactsService* contacts_service() { return contacts_service_.get(); } |
| 46 DriveWebAppsRegistry* webapps_registry() { return webapps_registry_.get(); } | 46 DriveWebAppsRegistry* webapps_registry() { return webapps_registry_.get(); } |
| 47 | 47 |
| 48 // Clears all the local cache files and in-memory data, and remounts the file | 48 // Clears all the local cache files and in-memory data, and remounts the file |
| 49 // system. | 49 // system. |
| 50 void ClearCacheAndRemountFileSystem( | 50 void ClearCacheAndRemountFileSystem( |
| 51 const base::Callback<void(bool)>& callback); | 51 const base::Callback<void(bool)>& callback); |
| (...skipping 17 matching lines...) Expand all Loading... |
| 69 | 69 |
| 70 // Adds back the drive mount point. Used to implement ClearCache(). | 70 // Adds back the drive mount point. Used to implement ClearCache(). |
| 71 void AddBackDriveMountPoint(const base::Callback<void(bool)>& callback, | 71 void AddBackDriveMountPoint(const base::Callback<void(bool)>& callback, |
| 72 GDataFileError error, | 72 GDataFileError error, |
| 73 const FilePath& file_path); | 73 const FilePath& file_path); |
| 74 | 74 |
| 75 friend class GDataSystemServiceFactory; | 75 friend class GDataSystemServiceFactory; |
| 76 | 76 |
| 77 Profile* profile_; | 77 Profile* profile_; |
| 78 scoped_refptr<base::SequencedTaskRunner> blocking_task_runner_; | 78 scoped_refptr<base::SequencedTaskRunner> blocking_task_runner_; |
| 79 GDataCache* cache_; | 79 DriveCache* cache_; |
| 80 scoped_ptr<DriveServiceInterface> drive_service_; | 80 scoped_ptr<DriveServiceInterface> drive_service_; |
| 81 scoped_ptr<GDataUploader> uploader_; | 81 scoped_ptr<GDataUploader> uploader_; |
| 82 scoped_ptr<DriveWebAppsRegistry> webapps_registry_; | 82 scoped_ptr<DriveWebAppsRegistry> webapps_registry_; |
| 83 scoped_ptr<GDataFileSystemInterface> file_system_; | 83 scoped_ptr<GDataFileSystemInterface> file_system_; |
| 84 scoped_ptr<FileWriteHelper> file_write_helper_; | 84 scoped_ptr<FileWriteHelper> file_write_helper_; |
| 85 scoped_ptr<GDataDownloadObserver> download_observer_; | 85 scoped_ptr<GDataDownloadObserver> download_observer_; |
| 86 scoped_ptr<GDataSyncClient> sync_client_; | 86 scoped_ptr<GDataSyncClient> sync_client_; |
| 87 scoped_ptr<GDataContactsService> contacts_service_; | 87 scoped_ptr<GDataContactsService> contacts_service_; |
| 88 base::WeakPtrFactory<GDataSystemService> weak_ptr_factory_; | 88 base::WeakPtrFactory<GDataSystemService> weak_ptr_factory_; |
| 89 | 89 |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 virtual ~GDataSystemServiceFactory(); | 124 virtual ~GDataSystemServiceFactory(); |
| 125 | 125 |
| 126 // ProfileKeyedServiceFactory: | 126 // ProfileKeyedServiceFactory: |
| 127 virtual ProfileKeyedService* BuildServiceInstanceFor( | 127 virtual ProfileKeyedService* BuildServiceInstanceFor( |
| 128 Profile* profile) const OVERRIDE; | 128 Profile* profile) const OVERRIDE; |
| 129 }; | 129 }; |
| 130 | 130 |
| 131 } // namespace gdata | 131 } // namespace gdata |
| 132 | 132 |
| 133 #endif // CHROME_BROWSER_CHROMEOS_GDATA_GDATA_SYSTEM_SERVICE_H_ | 133 #endif // CHROME_BROWSER_CHROMEOS_GDATA_GDATA_SYSTEM_SERVICE_H_ |
| OLD | NEW |