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

Unified Diff: chrome/browser/chromeos/drive/file_system/move_operation.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: rebase 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/file_system/move_operation.cc
diff --git a/chrome/browser/chromeos/drive/file_system/move_operation.cc b/chrome/browser/chromeos/drive/file_system/move_operation.cc
index d17f829122b97b42f14829ca0169d2caf58b8311..3ec9b8f9c01bee94518427cb8cf467b3b003494f 100644
--- a/chrome/browser/chromeos/drive/file_system/move_operation.cc
+++ b/chrome/browser/chromeos/drive/file_system/move_operation.cc
@@ -14,7 +14,7 @@
using content::BrowserThread;
-namespace gdata {
+namespace drive {
namespace file_system {
MoveOperation::MoveOperation(DriveServiceInterface* drive_service,
@@ -178,7 +178,7 @@ void MoveOperation::RenameEntryLocally(
const FilePath& file_path,
const FilePath::StringType& new_name,
const FileMoveCallback& callback,
- GDataErrorCode status,
+ gdata::GDataErrorCode status,
const GURL& /* document_url */) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
DCHECK(!callback.is_null());
@@ -330,7 +330,7 @@ void MoveOperation::MoveEntryToDirectory(
const FilePath& file_path,
const FilePath& directory_path,
const FileMoveCallback& callback,
- GDataErrorCode status,
+ gdata::GDataErrorCode status,
const GURL& /* document_url */) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
DCHECK(!callback.is_null());
@@ -374,4 +374,4 @@ void MoveOperation::NotifyAndRunFileMoveCallback(
}
} // namespace file_system
-} // namespace gdata
+} // namespace drive

Powered by Google App Engine
This is Rietveld 408576698