Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1595)

Unified Diff: content/browser/renderer_host/file_utilities_message_filter.h

Issue 46303005: Fix chrome upload with content uri (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_;

Powered by Google App Engine
This is Rietveld 408576698