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

Unified Diff: chrome/browser/chromeos/extensions/file_handler_util.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/extensions/file_handler_util.cc
diff --git a/chrome/browser/chromeos/extensions/file_handler_util.cc b/chrome/browser/chromeos/extensions/file_handler_util.cc
index 85a9a3029df2e85e7e4c16783e40a2adbf146a45..09794e79c0bed15f55276f16435f5b296c2c81d2 100644
--- a/chrome/browser/chromeos/extensions/file_handler_util.cc
+++ b/chrome/browser/chromeos/extensions/file_handler_util.cc
@@ -650,7 +650,7 @@ class ExtensionTaskExecutor::ExecuteTasksFileSystemCallbackDispatcher {
FilePath virtual_path = url.virtual_path();
bool is_drive_file = url.type() == fileapi::kFileSystemTypeDrive;
- DCHECK(!is_drive_file || gdata::util::IsUnderGDataMountPoint(local_path));
+ DCHECK(!is_drive_file || gdata::util::IsUnderDriveMountPoint(local_path));
// If the file is under gdata mount point, there is no actual file to be
// found on the url.path().
@@ -908,7 +908,7 @@ void ExtensionTaskExecutor::InitHandlerHostFileAccessPermissions(
iter->absolute_path,
GetAccessPermissionsForHandler(handler_extension, action_id)));
- if (gdata::util::IsUnderGDataMountPoint(iter->absolute_path))
+ if (gdata::util::IsUnderDriveMountPoint(iter->absolute_path))
gdata_paths->push_back(iter->virtual_path);
}

Powered by Google App Engine
This is Rietveld 408576698