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

Unified Diff: chrome/browser/sync_file_system/local/syncable_file_system_operation.h

Issue 145303002: Convert Media Galleries to use base::File (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 years, 11 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/sync_file_system/local/syncable_file_system_operation.h
diff --git a/chrome/browser/sync_file_system/local/syncable_file_system_operation.h b/chrome/browser/sync_file_system/local/syncable_file_system_operation.h
index 0948dc034b378ada3969023eec804f3ec52359eb..fda75736428690703c7aebdb6646332a1a043eb5 100644
--- a/chrome/browser/sync_file_system/local/syncable_file_system_operation.h
+++ b/chrome/browser/sync_file_system/local/syncable_file_system_operation.h
@@ -91,7 +91,7 @@ class SyncableFileSystemOperation
const fileapi::FileSystemURL& dest_url,
CopyOrMoveOption option,
const StatusCallback& callback) OVERRIDE;
- virtual base::PlatformFileError SyncGetPlatformPath(
+ virtual base::File::Error SyncGetPlatformPath(
const fileapi::FileSystemURL& url,
base::FilePath* platform_path) OVERRIDE;
@@ -107,9 +107,9 @@ class SyncableFileSystemOperation
fileapi::FileSystemContext* file_system_context,
scoped_ptr<fileapi::FileSystemOperationContext> operation_context);
- void DidFinish(base::PlatformFileError status);
+ void DidFinish(base::File::Error status);
void DidWrite(const WriteCallback& callback,
- base::PlatformFileError result,
+ base::File::Error result,
int64 bytes,
bool complete);

Powered by Google App Engine
This is Rietveld 408576698