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 |