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

Unified Diff: content/common/manifest_manager_messages.h

Issue 2064943002: Pass in extra parameters to WebApkBuilder#buildWebApkAsync() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merge branch 'master' into webapk_manifest000 Created 4 years, 6 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
« no previous file with comments | « content/browser/manifest/manifest_manager_host.cc ('k') | content/public/browser/web_contents.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/manifest_manager_messages.h
diff --git a/content/common/manifest_manager_messages.h b/content/common/manifest_manager_messages.h
index 67cf0d0ddb59c38fcbf432f88b369d54cf32f3c9..6bdb98f8e75f373f3ba04ed332a039f6d2909bb5 100644
--- a/content/common/manifest_manager_messages.h
+++ b/content/common/manifest_manager_messages.h
@@ -55,10 +55,11 @@ IPC_MESSAGE_ROUTED1(ManifestManagerMsg_HasManifest,
int /* request_id */)
// The render process' response to a RequestManifest. The |request_id| will
-// match the one that was initially received. The |manifest| object will be an
-// empty manifest in case of any failure.
-IPC_MESSAGE_ROUTED2(ManifestManagerHostMsg_RequestManifestResponse,
+// match the one that was initially received. The |manifest_url| and |manifest|
+// will be empty in case of any failure.
+IPC_MESSAGE_ROUTED3(ManifestManagerHostMsg_RequestManifestResponse,
int, /* request_id */
+ GURL, /* manifest URL */
content::Manifest /* manifest */)
// The render process' response to a HasManifest. The |request_id| is the one
« no previous file with comments | « content/browser/manifest/manifest_manager_host.cc ('k') | content/public/browser/web_contents.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698