Index: content/browser/renderer_host/file_utilities_message_filter.h |
diff --git a/content/browser/renderer_host/file_utilities_message_filter.h b/content/browser/renderer_host/file_utilities_message_filter.h |
index 948e6c20b4af7bed23df1f75c3fac12b735c3dd4..0a8a31c0c8af994c9dfefc2f83fcd21a461a91e1 100644 |
--- a/content/browser/renderer_host/file_utilities_message_filter.h |
+++ b/content/browser/renderer_host/file_utilities_message_filter.h |
@@ -10,6 +10,10 @@ |
#include "content/public/browser/browser_message_filter.h" |
#include "ipc/ipc_platform_file.h" |
+#if defined(OS_ANDROID) |
+#include "url/gurl.h" |
+#endif |
+ |
namespace base { |
struct PlatformFileInfo; |
} |
@@ -39,6 +43,11 @@ class FileUtilitiesMessageFilter : public BrowserMessageFilter { |
void OnGetFileInfo(const base::FilePath& path, |
base::PlatformFileInfo* result, |
base::PlatformFileError* status); |
+#if defined(OS_ANDROID) |
+ void OnGetContentUrlInfo(const GURL& content_url, |
+ base::PlatformFileInfo* result, |
+ base::PlatformFileError* status); |
+#endif |
// The ID of this process. |
int process_id_; |