Index: chrome/browser/chromeos/gdata/gdata_file_system_proxy.cc |
diff --git a/chrome/browser/chromeos/gdata/gdata_file_system_proxy.cc b/chrome/browser/chromeos/gdata/gdata_file_system_proxy.cc |
index 52565ac3d7e66f78875d728bd8a00fd085da81fe..55901a4995a1d40c882fc3898874659a72aa9771 100644 |
--- a/chrome/browser/chromeos/gdata/gdata_file_system_proxy.cc |
+++ b/chrome/browser/chromeos/gdata/gdata_file_system_proxy.cc |
@@ -366,7 +366,7 @@ void GDataFileSystemProxy::OnOpenFileForWriting( |
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); |
base::PlatformFileError error = |
- gdata::util::GDataFileErrorToPlatformError(gdata_error); |
+ util::GDataFileErrorToPlatformError(gdata_error); |
if (error != base::PLATFORM_FILE_OK) { |
callback.Run(error, base::kInvalidPlatformFileValue, peer_handle); |
@@ -401,7 +401,7 @@ void GDataFileSystemProxy::OnCreateFileForOpen( |
GDataFileError gdata_error) { |
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); |
base::PlatformFileError create_result = |
- gdata::util::GDataFileErrorToPlatformError(gdata_error); |
+ util::GDataFileErrorToPlatformError(gdata_error); |
if ((create_result == base::PLATFORM_FILE_OK) || |
((create_result == base::PLATFORM_FILE_ERROR_EXISTS) && |
@@ -650,7 +650,7 @@ bool GDataFileSystemProxy::ValidateUrl( |
void GDataFileSystemProxy::OnStatusCallback( |
const fileapi::FileSystemOperationInterface::StatusCallback& callback, |
- gdata::GDataFileError error) { |
+ GDataFileError error) { |
callback.Run(util::GDataFileErrorToPlatformError(error)); |
} |
@@ -658,7 +658,7 @@ void GDataFileSystemProxy::OnGetMetadata( |
const FilePath& file_path, |
const FileSystemOperationInterface::GetMetadataCallback& callback, |
GDataFileError error, |
- scoped_ptr<gdata::GDataEntryProto> entry_proto) { |
+ scoped_ptr<GDataEntryProto> entry_proto) { |
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); |
if (error != GDATA_FILE_OK) { |
@@ -681,7 +681,7 @@ void GDataFileSystemProxy::OnReadDirectory( |
const FileSystemOperationInterface::ReadDirectoryCallback& |
callback, |
GDataFileError error, |
- scoped_ptr<gdata::GDataEntryProtoVector> proto_entries) { |
+ scoped_ptr<GDataEntryProtoVector> proto_entries) { |
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); |
PrefService* pref_service = profile_->GetPrefs(); |