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

Unified Diff: chrome/browser/chromeos/extensions/file_browser_handler_api.cc

Issue 11106007: drive: Rename 'gdata' namespace to 'drive' in chrome/browser/chromeos/drive (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 2 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_browser_handler_api.cc
diff --git a/chrome/browser/chromeos/extensions/file_browser_handler_api.cc b/chrome/browser/chromeos/extensions/file_browser_handler_api.cc
index dd301f7025acc34bf9bb7ae54eb6fcd88ddf4d61..6d74190d59f0987e34beb4ff157d76985f6f87f4 100644
--- a/chrome/browser/chromeos/extensions/file_browser_handler_api.cc
+++ b/chrome/browser/chromeos/extensions/file_browser_handler_api.cc
@@ -383,7 +383,7 @@ void FileHandlerSelectFileFunction::GrantPermissions() {
full_path_,
file_handler_util::GetReadWritePermissions()));
- if (!gdata::util::IsUnderDriveMountPoint(full_path_)) {
+ if (!drive::util::IsUnderDriveMountPoint(full_path_)) {
// If the file is not on drive, we have to only grant permission for the
// file's virtual path.
OnGotPermissionsToGrant();
@@ -395,7 +395,7 @@ void FileHandlerSelectFileFunction::GrantPermissions() {
scoped_ptr<std::vector<FilePath> > gdata_paths(new std::vector<FilePath>());
gdata_paths->push_back(virtual_path_);
- gdata::util::InsertDriveCachePathsPermissions(
+ drive::util::InsertDriveCachePathsPermissions(
profile(),
gdata_paths.Pass(),
&permissions_to_grant_,

Powered by Google App Engine
This is Rietveld 408576698