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

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

Issue 10877005: Rename GDataCache* to DriveCache* (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 438e5fbd2065c7758319c7911e2593ba54183cc2..c765b086760b338b681c03a50a4f2eda0e21f2ba 100644
--- a/chrome/browser/chromeos/gdata/gdata_system_service.h
+++ b/chrome/browser/chromeos/gdata/gdata_system_service.h
@@ -19,10 +19,10 @@ class FilePath;
namespace gdata {
+class DriveCache;
class DriveServiceInterface;
class DriveWebAppsRegistry;
class FileWriteHelper;
-class GDataCache;
class GDataContactsService;
class GDataDownloadObserver;
class GDataFileSystemInterface;
@@ -38,7 +38,7 @@ class GDataUploader;
class GDataSystemService : public ProfileKeyedService {
public:
DriveServiceInterface* drive_service() { return drive_service_.get(); }
- GDataCache* cache() { return cache_; }
+ DriveCache* cache() { return cache_; }
GDataFileSystemInterface* file_system() { return file_system_.get(); }
FileWriteHelper* file_write_helper() { return file_write_helper_.get(); }
GDataUploader* uploader() { return uploader_.get(); }
@@ -76,7 +76,7 @@ class GDataSystemService : public ProfileKeyedService {
Profile* profile_;
scoped_refptr<base::SequencedTaskRunner> blocking_task_runner_;
- GDataCache* cache_;
+ DriveCache* cache_;
scoped_ptr<DriveServiceInterface> drive_service_;
scoped_ptr<GDataUploader> uploader_;
scoped_ptr<DriveWebAppsRegistry> webapps_registry_;
« 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