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

Unified Diff: webkit/plugins/ppapi/plugin_delegate.h

Issue 14472008: [FileAPI] Add file open ID and close callback (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 8 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
« no previous file with comments | « webkit/fileapi/remote_file_system_proxy.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/plugins/ppapi/plugin_delegate.h
diff --git a/webkit/plugins/ppapi/plugin_delegate.h b/webkit/plugins/ppapi/plugin_delegate.h
index 95c1be65139faa987d429418280604e10a44b25d..94ad33652932cee74a99dedba3c24cbeb0f72c5c 100644
--- a/webkit/plugins/ppapi/plugin_delegate.h
+++ b/webkit/plugins/ppapi/plugin_delegate.h
@@ -485,10 +485,11 @@ class PluginDelegate {
typedef base::Callback<void (base::PlatformFileError)>
NotifyCloseFileCallback;
typedef base::Callback<
- void (base::PlatformFileError,
- base::PassPlatformFile,
- quota::QuotaLimitType,
- const NotifyCloseFileCallback&)> AsyncOpenFileSystemURLCallback;
+ void (base::PlatformFileError error,
+ base::PassPlatformFile file,
+ quota::QuotaLimitType quota_policy,
+ const NotifyCloseFileCallback& close_file_callback)>
+ AsyncOpenFileSystemURLCallback;
virtual bool AsyncOpenFileSystemURL(
const GURL& path,
int flags,
« no previous file with comments | « webkit/fileapi/remote_file_system_proxy.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698