| Index: content/browser/renderer_host/file_utilities_message_filter.cc
|
| diff --git a/content/browser/renderer_host/file_utilities_message_filter.cc b/content/browser/renderer_host/file_utilities_message_filter.cc
|
| index 6ecf628c1aaa50916fd8b92bc6f11c47824c2fd3..a2fcd809a8f3c6cc807c4569a3cad359b18ba7dc 100644
|
| --- a/content/browser/renderer_host/file_utilities_message_filter.cc
|
| +++ b/content/browser/renderer_host/file_utilities_message_filter.cc
|
| @@ -36,7 +36,7 @@ bool FileUtilitiesMessageFilter::OnMessageReceived(const IPC::Message& message,
|
| }
|
|
|
| void FileUtilitiesMessageFilter::OnGetFileInfo(
|
| - const FilePath& path,
|
| + const base::FilePath& path,
|
| base::PlatformFileInfo* result,
|
| base::PlatformFileError* status) {
|
| *result = base::PlatformFileInfo();
|
| @@ -54,7 +54,7 @@ void FileUtilitiesMessageFilter::OnGetFileInfo(
|
| }
|
|
|
| void FileUtilitiesMessageFilter::OnOpenFile(
|
| - const FilePath& path,
|
| + const base::FilePath& path,
|
| int mode,
|
| IPC::PlatformFileForTransit* result) {
|
| // Open the file only when the child process has been granted permission to
|
|
|