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)) |