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

Unified Diff: chrome/browser/chromeos/drive/drive_file_system_proxy.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/drive/drive_file_system_proxy.cc
diff --git a/chrome/browser/chromeos/drive/drive_file_system_proxy.cc b/chrome/browser/chromeos/drive/drive_file_system_proxy.cc
index 7d8a12385739c198c43a4c7bf82e6425d02973ed..da8fce6e9ef29b8a3e323e1337ca70c51f974dbe 100644
--- a/chrome/browser/chromeos/drive/drive_file_system_proxy.cc
+++ b/chrome/browser/chromeos/drive/drive_file_system_proxy.cc
@@ -29,7 +29,7 @@ using fileapi::FileSystemURL;
using fileapi::FileSystemOperation;
using webkit_blob::ShareableFileReference;
-namespace gdata {
+namespace drive {
namespace {
@@ -521,7 +521,7 @@ void DriveFileSystemProxy::OpenFile(
callback,
file_flags,
peer_handle),
- GetContentCallback());
+ gdata::GetContentCallback());
}
} else if ((file_flags & base::PLATFORM_FILE_CREATE) ||
(file_flags & base::PLATFORM_FILE_CREATE_ALWAYS)) {
@@ -617,7 +617,7 @@ void DriveFileSystemProxy::OnGetEntryInfoByPath(
base::Bind(&CallSnapshotFileCallback,
callback,
file_info),
- GetContentCallback());
+ gdata::GetContentCallback());
}
void DriveFileSystemProxy::CreateWritableSnapshotFile(
@@ -751,4 +751,4 @@ void DriveFileSystemProxy::CloseWritableSnapshotFile(
base::Bind(&EmitDebugLogForCloseFile, virtual_path));
}
-} // namespace gdata
+} // namespace drive

Powered by Google App Engine
This is Rietveld 408576698