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

Unified Diff: chrome/browser/chromeos/gdata/gdata_system_service.h

Issue 10874028: Rename GDataFileSystem* to DriveFileSystem* (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase. Created 8 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/gdata/gdata_system_service.h
diff --git a/chrome/browser/chromeos/gdata/gdata_system_service.h b/chrome/browser/chromeos/gdata/gdata_system_service.h
index a2d21b2d049fd077c9613af0fa227d6159ea7e03..e190fc795063758840275db3e29f3ce699fc412d 100644
--- a/chrome/browser/chromeos/gdata/gdata_system_service.h
+++ b/chrome/browser/chromeos/gdata/gdata_system_service.h
@@ -20,16 +20,16 @@ class FilePath;
namespace gdata {
class DriveCache;
+class DriveFileSystemInterface;
class DriveServiceInterface;
class DriveWebAppsRegistry;
class FileWriteHelper;
class GDataContactsService;
class GDataDownloadObserver;
-class GDataFileSystemInterface;
class GDataSyncClient;
class GDataUploader;
-// GDataSystemService runs the GData system, including the GData file system
+// GDataSystemService runs the GData system, including the Drive file system
// implementation for the file manager, and some other sub systems.
//
// The class is essentially a container that manages lifetime of the objects
@@ -39,7 +39,7 @@ class GDataSystemService : public ProfileKeyedService {
public:
DriveServiceInterface* drive_service() { return drive_service_.get(); }
DriveCache* cache() { return cache_; }
- GDataFileSystemInterface* file_system() { return file_system_.get(); }
+ DriveFileSystemInterface* file_system() { return file_system_.get(); }
FileWriteHelper* file_write_helper() { return file_write_helper_.get(); }
GDataUploader* uploader() { return uploader_.get(); }
GDataContactsService* contacts_service() { return contacts_service_.get(); }
@@ -80,7 +80,7 @@ class GDataSystemService : public ProfileKeyedService {
scoped_ptr<DriveServiceInterface> drive_service_;
scoped_ptr<GDataUploader> uploader_;
scoped_ptr<DriveWebAppsRegistry> webapps_registry_;
- scoped_ptr<GDataFileSystemInterface> file_system_;
+ scoped_ptr<DriveFileSystemInterface> file_system_;
scoped_ptr<FileWriteHelper> file_write_helper_;
scoped_ptr<GDataDownloadObserver> download_observer_;
scoped_ptr<GDataSyncClient> sync_client_;
« no previous file with comments | « chrome/browser/chromeos/gdata/gdata_sync_client_unittest.cc ('k') | chrome/browser/chromeos/gdata/gdata_system_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698