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

Unified Diff: content/browser/manifest/manifest_manager_host.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_browsertest.cc ('k') | content/browser/manifest/manifest_manager_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/manifest/manifest_manager_host.h
diff --git a/content/browser/manifest/manifest_manager_host.h b/content/browser/manifest/manifest_manager_host.h
index 069a5303b836091a171cf8b486dd455fa106854f..810f525a46d170996d89483cffbe6dbfb5898ec3 100644
--- a/content/browser/manifest/manifest_manager_host.h
+++ b/content/browser/manifest/manifest_manager_host.h
@@ -24,7 +24,8 @@ class ManifestManagerHost : public WebContentsObserver {
explicit ManifestManagerHost(WebContents* web_contents);
~ManifestManagerHost() override;
- using GetManifestCallback = base::Callback<void(const Manifest&)>;
+ using GetManifestCallback =
+ base::Callback<void(const GURL&, const Manifest&)>;
using HasManifestCallback = base::Callback<void(bool)>;
// Calls the given callback with the manifest associated with the
@@ -47,7 +48,7 @@ class ManifestManagerHost : public WebContentsObserver {
using FrameHasCallbackMap = base::hash_map<RenderFrameHost*, HasCallbackMap*>;
void OnRequestManifestResponse(
- RenderFrameHost*, int request_id, const Manifest&);
+ RenderFrameHost*, int request_id, const GURL&, const Manifest&);
void OnHasManifestResponse(
RenderFrameHost*, int request_id, bool);
« no previous file with comments | « content/browser/manifest/manifest_browsertest.cc ('k') | content/browser/manifest/manifest_manager_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698