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

Unified Diff: content/browser/renderer_host/pepper/pepper_file_io_host.h

Issue 291513003: Remove PlatformFile from fileapi::FileSystemOperation (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix recent bot failures Created 6 years, 7 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_file_io_host.h
diff --git a/content/browser/renderer_host/pepper/pepper_file_io_host.h b/content/browser/renderer_host/pepper/pepper_file_io_host.h
index ecb7d22ed16dfb8f5718abbeca6c3b342e236e2f..04647cd799e6d0c46f0f0d149c55f110bb2712d5 100644
--- a/content/browser/renderer_host/pepper/pepper_file_io_host.h
+++ b/content/browser/renderer_host/pepper/pepper_file_io_host.h
@@ -79,11 +79,6 @@ class PepperFileIOHost : public ppapi::host::ResourceHost,
void ExecutePlatformGeneralCallback(
ppapi::host::ReplyMessageContext reply_context,
base::File::Error error_code);
- void ExecutePlatformOpenFileCallback(
- ppapi::host::ReplyMessageContext reply_context,
- base::File::Error error_code,
- base::PassPlatformFile file,
- bool unused_created);
void OnOpenProxyCallback(ppapi::host::ReplyMessageContext reply_context,
base::File::Error error_code);
@@ -93,8 +88,7 @@ class PepperFileIOHost : public ppapi::host::ResourceHost,
int platform_file_flags,
UIThreadStuff ui_thread_stuff);
void DidOpenInternalFile(ppapi::host::ReplyMessageContext reply_context,
- base::File::Error result,
- base::PlatformFile file,
+ base::File file,
const base::Closure& on_close_callback);
void GotResolvedRenderProcessId(
ppapi::host::ReplyMessageContext reply_context,
@@ -103,7 +97,7 @@ class PepperFileIOHost : public ppapi::host::ResourceHost,
base::ProcessId resolved_render_process_id);
void DidOpenQuotaFile(ppapi::host::ReplyMessageContext reply_context,
- base::PlatformFile file,
+ base::File file,
int64_t max_written_offset);
bool CallSetLength(ppapi::host::ReplyMessageContext reply_context,
int64_t length);

Powered by Google App Engine
This is Rietveld 408576698