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

Unified Diff: chrome/browser/extensions/api/sync_file_system/sync_file_system_api.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/extensions/api/sync_file_system/sync_file_system_api.h
diff --git a/chrome/browser/extensions/api/sync_file_system/sync_file_system_api.h b/chrome/browser/extensions/api/sync_file_system/sync_file_system_api.h
index 92aed63800abc7e2a8e4af5085ee3dd6093ed14f..68c9d783f21cbc664eaee90d5fd826a30b8f7222 100644
--- a/chrome/browser/extensions/api/sync_file_system/sync_file_system_api.h
+++ b/chrome/browser/extensions/api/sync_file_system/sync_file_system_api.h
@@ -35,7 +35,7 @@ class SyncFileSystemDeleteFileSystemFunction
virtual bool RunImpl() OVERRIDE;
private:
- void DidDeleteFileSystem(base::PlatformFileError error);
+ void DidDeleteFileSystem(base::File::Error error);
};
class SyncFileSystemGetFileStatusFunction
@@ -115,7 +115,7 @@ class SyncFileSystemRequestFileSystemFunction
void DidOpenFileSystem(const GURL& root_url,
const std::string& file_system_name,
- base::PlatformFileError error);
+ base::File::Error error);
};
class SyncFileSystemSetConflictResolutionPolicyFunction

Powered by Google App Engine
This is Rietveld 408576698