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

Unified Diff: content/common/file_utilities_messages.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/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

Powered by Google App Engine
This is Rietveld 408576698