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

Unified Diff: content/browser/renderer_host/pepper/pepper_internal_file_ref_backend.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: content/browser/renderer_host/pepper/pepper_internal_file_ref_backend.h
diff --git a/content/browser/renderer_host/pepper/pepper_internal_file_ref_backend.h b/content/browser/renderer_host/pepper/pepper_internal_file_ref_backend.h
index f75e32aba1d4ae0ea70d96b0a4832abcea10c6f6..0e70270b14c5153f59073786866b9dee5c265659 100644
--- a/content/browser/renderer_host/pepper/pepper_internal_file_ref_backend.h
+++ b/content/browser/renderer_host/pepper/pepper_internal_file_ref_backend.h
@@ -56,16 +56,16 @@ class PepperInternalFileRefBackend : public PepperFileRefBackend {
// Generic reply callback.
void DidFinish(ppapi::host::ReplyMessageContext reply_context,
const IPC::Message& msg,
- base::PlatformFileError error);
+ base::File::Error error);
// Operation specific callbacks.
void GetMetadataComplete(
ppapi::host::ReplyMessageContext reply_context,
- base::PlatformFileError error,
- const base::PlatformFileInfo& file_info);
+ base::File::Error error,
+ const base::File::Info& file_info);
void ReadDirectoryComplete(
ppapi::host::ReplyMessageContext context,
- base::PlatformFileError error,
+ base::File::Error error,
const fileapi::FileSystemOperation::FileEntryList& file_list,
bool has_more);

Powered by Google App Engine
This is Rietveld 408576698