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

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

Issue 10905142: Rename GData to Drive in drive_file_system_util (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 3 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/drive_system_service.cc
diff --git a/chrome/browser/chromeos/gdata/drive_system_service.cc b/chrome/browser/chromeos/gdata/drive_system_service.cc
index 8506001d828f8c784dad23cd97af44bc25000f82..3f7c94f069e916a2ad65f7b1272c601b3071327e 100644
--- a/chrome/browser/chromeos/gdata/drive_system_service.cc
+++ b/chrome/browser/chromeos/gdata/drive_system_service.cc
@@ -134,7 +134,7 @@ void DriveSystemService::AddDriveMountPoint() {
if (!gdata::util::IsGDataAvailable(profile_))
return;
- const FilePath mount_point = gdata::util::GetGDataMountPointPath();
+ const FilePath mount_point = gdata::util::GetDriveMountPointPath();
fileapi::ExternalFileSystemMountPointProvider* provider =
BrowserContext::GetFileSystemContext(profile_)->external_provider();
if (provider && !provider->HasMountPoint(mount_point)) {
@@ -150,7 +150,7 @@ void DriveSystemService::RemoveDriveMountPoint() {
file_system_->NotifyFileSystemToBeUnmounted();
file_system_->StopUpdates();
- const FilePath mount_point = gdata::util::GetGDataMountPointPath();
+ const FilePath mount_point = gdata::util::GetDriveMountPointPath();
fileapi::ExternalFileSystemMountPointProvider* provider =
BrowserContext::GetFileSystemContext(profile_)->external_provider();
if (provider && provider->HasMountPoint(mount_point))
« no previous file with comments | « chrome/browser/chromeos/gdata/drive_file_system_util_unittest.cc ('k') | chrome/browser/chromeos/preferences.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698