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

Unified Diff: chrome/browser/chromeos/gdata/gdata_file_system_proxy.cc

Issue 10829233: Remove gdata:: from gdata_file_system_proxy.cc and .h (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 4 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
« no previous file with comments | « chrome/browser/chromeos/gdata/gdata_file_system_proxy.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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();
« no previous file with comments | « chrome/browser/chromeos/gdata/gdata_file_system_proxy.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698