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

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

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.cc
diff --git a/chrome/browser/chromeos/gdata/gdata_system_service.cc b/chrome/browser/chromeos/gdata/gdata_system_service.cc
index 4619eac189a6d9f78ad305f551f961087efb7297..ac0049ba5bc04db9cc92b61041f188c654bf65fd 100644
--- a/chrome/browser/chromeos/gdata/gdata_system_service.cc
+++ b/chrome/browser/chromeos/gdata/gdata_system_service.cc
@@ -60,7 +60,7 @@ void GDataSystemService::Initialize(
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
drive_service_.reset(drive_service);
- cache_ = GDataCache::CreateGDataCacheOnUIThread(
+ cache_ = DriveCache::CreateDriveCacheOnUIThread(
cache_root,
blocking_task_runner_);
uploader_.reset(new GDataUploader(drive_service_.get()));
@@ -87,7 +87,7 @@ void GDataSystemService::Initialize(
download_observer_->Initialize(
download_manager,
cache_->GetCacheDirectoryPath(
- GDataCache::CACHE_TYPE_TMP_DOWNLOADS));
+ DriveCache::CACHE_TYPE_TMP_DOWNLOADS));
AddDriveMountPoint();
contacts_service_->Initialize();
@@ -221,7 +221,7 @@ ProfileKeyedService* GDataSystemServiceFactory::BuildServiceInstanceFor(
FilePath cache_root =
g_test_cache_root ? FilePath(*g_test_cache_root) :
- GDataCache::GetCacheRootPath(profile);
+ DriveCache::GetCacheRootPath(profile);
delete g_test_cache_root;
g_test_cache_root = NULL;
« no previous file with comments | « chrome/browser/chromeos/gdata/gdata_system_service.h ('k') | chrome/browser/chromeos/gdata/gdata_test_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698