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

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

Issue 10877006: Rename GDataErrorCode to DriveErrorCode, GDataFileError to DriveFileError (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: minor local variable name fix. 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
Index: chrome/browser/chromeos/gdata/gdata_file_system_proxy.h
diff --git a/chrome/browser/chromeos/gdata/gdata_file_system_proxy.h b/chrome/browser/chromeos/gdata/gdata_file_system_proxy.h
index 217721404a9339019bf92ce40e639c0c0b302532..ef33146b095f948bb4c1c64577f992dbb49fe08e 100644
--- a/chrome/browser/chromeos/gdata/gdata_file_system_proxy.h
+++ b/chrome/browser/chromeos/gdata/gdata_file_system_proxy.h
@@ -93,7 +93,7 @@ class GDataFileSystemProxy : public fileapi::RemoteFileSystemProxyInterface {
// calling thread.
void OnStatusCallback(
const fileapi::FileSystemOperationInterface::StatusCallback& callback,
- GDataFileError error);
+ DriveFileError error);
// Helper callback for relaying reply for metadata retrieval request to the
// calling thread.
@@ -101,7 +101,7 @@ class GDataFileSystemProxy : public fileapi::RemoteFileSystemProxyInterface {
const FilePath& file_path,
const fileapi::FileSystemOperationInterface::GetMetadataCallback&
callback,
- GDataFileError error,
+ DriveFileError error,
scoped_ptr<DriveEntryProto> entry_proto);
// Helper callback for relaying reply for GetEntryInfoByPath() to the
@@ -110,7 +110,7 @@ class GDataFileSystemProxy : public fileapi::RemoteFileSystemProxyInterface {
const FilePath& entry_path,
const fileapi::FileSystemOperationInterface::SnapshotFileCallback&
callback,
- GDataFileError error,
+ DriveFileError error,
scoped_ptr<DriveEntryProto> entry_proto);
// Helper callback for relaying reply for ReadDirectory() to the calling
@@ -118,7 +118,7 @@ class GDataFileSystemProxy : public fileapi::RemoteFileSystemProxyInterface {
void OnReadDirectory(
const fileapi::FileSystemOperationInterface::ReadDirectoryCallback&
callback,
- GDataFileError error,
+ DriveFileError error,
bool hide_hosted_documents,
scoped_ptr<DriveEntryProtoVector> proto_entries);
@@ -127,7 +127,7 @@ class GDataFileSystemProxy : public fileapi::RemoteFileSystemProxyInterface {
void OnCreateWritableSnapshotFile(
const FilePath& virtual_path,
const fileapi::WritableSnapshotFile& callback,
- GDataFileError result,
+ DriveFileError result,
const FilePath& local_path);
// Helper callback for closing the local cache file and committing the dirty
@@ -143,7 +143,7 @@ class GDataFileSystemProxy : public fileapi::RemoteFileSystemProxyInterface {
const FilePath& virtual_path,
int64 length,
const fileapi::FileSystemOperationInterface::StatusCallback& callback,
- GDataFileError open_result,
+ DriveFileError open_result,
const FilePath& local_cache_path);
// Invoked during Truncate() operation. This is called when the truncation of
@@ -160,7 +160,7 @@ class GDataFileSystemProxy : public fileapi::RemoteFileSystemProxyInterface {
int file_flags,
base::ProcessHandle peer_handle,
const fileapi::FileSystemOperationInterface::OpenFileCallback& callback,
- GDataFileError gdata_error,
+ DriveFileError file_error,
const FilePath& local_cache_path);
// Invoked during OpenFile() operation when file create flags are set.
@@ -169,7 +169,7 @@ class GDataFileSystemProxy : public fileapi::RemoteFileSystemProxyInterface {
int file_flags,
base::ProcessHandle peer_handle,
const fileapi::FileSystemOperationInterface::OpenFileCallback& callback,
- GDataFileError gdata_error);
+ DriveFileError file_error);
// Invoked during OpenFile() operation when base::PLATFORM_FILE_OPEN_TRUNCATED
// flag is set. This is called when the truncation of a local cache file is
« no previous file with comments | « chrome/browser/chromeos/gdata/gdata_file_system_interface.h ('k') | chrome/browser/chromeos/gdata/gdata_file_system_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698