| Index: content/child/fileapi/file_system_dispatcher.cc
|
| diff --git a/content/child/fileapi/file_system_dispatcher.cc b/content/child/fileapi/file_system_dispatcher.cc
|
| index b7a13671cfeecb823528696e605368be8b352c83..cd64b05af115a083ffb12fb0762dafd23a6b4c07 100644
|
| --- a/content/child/fileapi/file_system_dispatcher.cc
|
| +++ b/content/child/fileapi/file_system_dispatcher.cc
|
| @@ -307,16 +307,16 @@ void FileSystemDispatcher::TouchFile(
|
| request_id, path, last_access_time, last_modified_time));
|
| }
|
|
|
| -void FileSystemDispatcher::OpenFile(
|
| +void FileSystemDispatcher::OpenPepperFile(
|
| const GURL& file_path,
|
| - int file_flags,
|
| + int pp_open_flags,
|
| const OpenFileCallback& success_callback,
|
| const StatusCallback& error_callback) {
|
| int request_id = dispatchers_.Add(
|
| CallbackDispatcher::Create(success_callback, error_callback));
|
| ChildThread::current()->Send(
|
| - new FileSystemHostMsg_OpenFile(
|
| - request_id, file_path, file_flags));
|
| + new FileSystemHostMsg_OpenPepperFile(
|
| + request_id, file_path, pp_open_flags));
|
| }
|
|
|
| void FileSystemDispatcher::NotifyCloseFile(int file_open_id) {
|
|
|