| Index: chrome/browser/chromeos/drive/file_write_helper.cc
|
| diff --git a/chrome/browser/chromeos/drive/file_write_helper.cc b/chrome/browser/chromeos/drive/file_write_helper.cc
|
| index 3a21a6590ebe6247896a1217532aeb2c19b372bd..a1a408095eaa3756e155d8934d2ba2af3622b5af 100644
|
| --- a/chrome/browser/chromeos/drive/file_write_helper.cc
|
| +++ b/chrome/browser/chromeos/drive/file_write_helper.cc
|
| @@ -9,7 +9,7 @@
|
|
|
| using content::BrowserThread;
|
|
|
| -namespace gdata {
|
| +namespace drive {
|
|
|
| namespace {
|
|
|
| @@ -56,7 +56,7 @@ void FileWriteHelper::PrepareWritableFileAndRunAfterCreateFile(
|
| DriveFileError error) {
|
| DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
|
|
|
| - if (error != gdata::DRIVE_FILE_OK) {
|
| + if (error != DRIVE_FILE_OK) {
|
| if (!callback.is_null()) {
|
| content::BrowserThread::GetBlockingPool()->PostTask(
|
| FROM_HERE,
|
| @@ -79,7 +79,7 @@ void FileWriteHelper::PrepareWritableFileAndRunAfterOpenFile(
|
| const FilePath& local_cache_path) {
|
| DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
|
|
|
| - if (error != gdata::DRIVE_FILE_OK) {
|
| + if (error != DRIVE_FILE_OK) {
|
| if (!callback.is_null()) {
|
| content::BrowserThread::GetBlockingPool()->PostTask(
|
| FROM_HERE,
|
| @@ -107,4 +107,4 @@ void FileWriteHelper::PrepareWritableFileAndRunAfterCallback(
|
| base::Bind(&EmitDebugLogForCloseFile, file_path));
|
| }
|
|
|
| -} // namespace gdata
|
| +} // namespace drive
|
|
|