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

Unified Diff: chrome/browser/chromeos/drive/drive_task_executor.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/drive_task_executor.cc
diff --git a/chrome/browser/chromeos/drive/drive_task_executor.cc b/chrome/browser/chromeos/drive/drive_task_executor.cc
index 42dd856d388c2f7dffc1ad78482522aa2a7f1dc4..5d6b5bcc6f72830fb1e9ed5a90f25e8a6a27829c 100644
--- a/chrome/browser/chromeos/drive/drive_task_executor.cc
+++ b/chrome/browser/chromeos/drive/drive_task_executor.cc
@@ -25,7 +25,7 @@
#include "webkit/fileapi/file_system_url.h"
#include "webkit/fileapi/file_system_util.h"
-namespace gdata {
+namespace drive {
using file_handler_util::FileTaskExecutor;
@@ -107,7 +107,7 @@ void DriveTaskExecutor::OnFileEntryFetched(
void DriveTaskExecutor::OnAppAuthorized(
const std::string& resource_id,
- GDataErrorCode error,
+ gdata::GDataErrorCode error,
scoped_ptr<base::Value> feed_data) {
DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::UI));
@@ -118,7 +118,7 @@ void DriveTaskExecutor::OnAppAuthorized(
DriveSystemService* system_service =
DriveSystemServiceFactory::GetForProfile(profile());
- if (!system_service || error != HTTP_SUCCESS) {
+ if (!system_service || error != gdata::HTTP_SUCCESS) {
Done(false);
return;
}
@@ -167,4 +167,4 @@ void DriveTaskExecutor::Done(bool success) {
done_.Reset();
}
-} // namespace gdata
+} // namespace drive
« no previous file with comments | « chrome/browser/chromeos/drive/drive_task_executor.h ('k') | chrome/browser/chromeos/drive/drive_test_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698