| Index: webkit/plugins/ppapi/plugin_delegate.h
|
| diff --git a/webkit/plugins/ppapi/plugin_delegate.h b/webkit/plugins/ppapi/plugin_delegate.h
|
| index 292d0e47fe9b4604f4480e830e9518262a92983e..c0199991ea35030c172842207ce281193e5fdd2a 100644
|
| --- a/webkit/plugins/ppapi/plugin_delegate.h
|
| +++ b/webkit/plugins/ppapi/plugin_delegate.h
|
| @@ -462,11 +462,11 @@ class PluginDelegate {
|
| // Notifies that the index of the currently selected item has been updated.
|
| virtual void SelectedFindResultChanged(int identifier, int index) = 0;
|
|
|
| - // Sends an async IPC to open a local file.
|
| + // Sends an async IPC to open a local file. |pp_open_flags| are Pepper flags.
|
| typedef base::Callback<void (base::PlatformFileError, base::PassPlatformFile)>
|
| AsyncOpenFileCallback;
|
| virtual bool AsyncOpenFile(const base::FilePath& path,
|
| - int flags,
|
| + int pp_open_flags,
|
| const AsyncOpenFileCallback& callback) = 0;
|
|
|
| // These functions expose some of PepperFileSystemHost methods for
|
| @@ -494,9 +494,10 @@ class PluginDelegate {
|
| quota::QuotaLimitType quota_policy,
|
| const NotifyCloseFileCallback& close_file_callback)>
|
| AsyncOpenFileSystemURLCallback;
|
| + // |pp_open_flags| are Pepper flags.
|
| virtual void AsyncOpenFileSystemURL(
|
| const GURL& path,
|
| - int flags,
|
| + int pp_open_flags,
|
| const AsyncOpenFileSystemURLCallback& callback) = 0;
|
|
|
| // Callback typedefs for FileSystem related methods.
|
|
|