summaryrefslogtreecommitdiffstats
path: root/chrome/browser/extensions/webstore_installer.cc
diff options
context:
space:
mode:
authorkochi@chromium.org <kochi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-09-07 05:51:05 +0000
committerkochi@chromium.org <kochi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-09-07 05:51:05 +0000
commit06809def3833d6d96657b09a3667125f8ea0e02d (patch)
tree09c70998d01e427369284b7991c56457552cc2a5 /chrome/browser/extensions/webstore_installer.cc
parente14e496b4af745f857a654f8288ec7ba8d7e5e58 (diff)
downloadchromium_src-06809def3833d6d96657b09a3667125f8ea0e02d.zip
chromium_src-06809def3833d6d96657b09a3667125f8ea0e02d.tar.gz
chromium_src-06809def3833d6d96657b09a3667125f8ea0e02d.tar.bz2
Rename GData to Drive in drive_file_system_util
In this CL, the following functions in gdata::util namespace are renamed: * GetGDataMountPointPath() -> GetDriveMountPointPath() * GetGDataMountPointPathAsString() -> GetDriveMountPointPathAsString() * ModifyGDataFileResourceUrl() -> ModifyDriveFileResourceUrl() * IsUnderGDataMountPoint() -> IsUnderDriveMountPoint() * ExtractGDataPath() -> ExtractDrivePath() BUG=137151 TEST=pass all existing tests. TBR=derat@chromium.org, satorux@chromium.org, aa@chromium.org, estade@chromium.org, ahendrickson@chromium.org, ben@chromium.org Review URL: https://chromiumcodereview.appspot.com/10905142 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@155334 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/extensions/webstore_installer.cc')
-rw-r--r--chrome/browser/extensions/webstore_installer.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/extensions/webstore_installer.cc b/chrome/browser/extensions/webstore_installer.cc
index ee72834..88e68dd 100644
--- a/chrome/browser/extensions/webstore_installer.cc
+++ b/chrome/browser/extensions/webstore_installer.cc
@@ -101,7 +101,7 @@ void GetDownloadFilePath(
#if defined (OS_CHROMEOS)
// Do not use drive for extension downloads.
- if (gdata::util::IsUnderGDataMountPoint(directory))
+ if (gdata::util::IsUnderDriveMountPoint(directory))
directory = download_util::GetDefaultDownloadDirectory();
#endif