| Index: content/common/file_utilities_messages.h
|
| diff --git a/content/common/file_utilities_messages.h b/content/common/file_utilities_messages.h
|
| index 5d734703e08f3279bb682734e5c9a050102a8a00..75e35417d6f60044d8743df0a0d789db8492d9a5 100644
|
| --- a/content/common/file_utilities_messages.h
|
| +++ b/content/common/file_utilities_messages.h
|
| @@ -9,6 +9,10 @@
|
| #include "ipc/ipc_param_traits.h"
|
| #include "ipc/ipc_platform_file.h"
|
|
|
| +#if defined(OS_ANDROID)
|
| +#include "url/gurl.h"
|
| +#endif
|
| +
|
| #define IPC_MESSAGE_START FileUtilitiesMsgStart
|
|
|
| // File utilities messages sent from the renderer to the browser.
|
| @@ -17,3 +21,10 @@ IPC_SYNC_MESSAGE_CONTROL1_2(FileUtilitiesMsg_GetFileInfo,
|
| base::FilePath /* path */,
|
| base::PlatformFileInfo /* result */,
|
| base::PlatformFileError /* status */)
|
| +
|
| +#if defined(OS_ANDROID)
|
| +IPC_SYNC_MESSAGE_CONTROL1_2(FileUtilitiesMsg_GetContentUrlInfo,
|
| + GURL /* content url */,
|
| + base::PlatformFileInfo /* result */,
|
| + base::PlatformFileError /* status */)
|
| +#endif
|
|
|