| Index: webkit/plugins/ppapi/plugin_delegate.h
|
| diff --git a/webkit/plugins/ppapi/plugin_delegate.h b/webkit/plugins/ppapi/plugin_delegate.h
|
| index def54012ed86fe75299d7ea8613d60a5d8eb44dc..4fb41ff93bc2806ca293fb9e713a70221dd19dad 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.
|
|
|