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

Unified Diff: content/public/browser/web_contents.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/common/manifest_manager_messages.h ('k') | content/renderer/devtools/devtools_agent.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/browser/web_contents.h
diff --git a/content/public/browser/web_contents.h b/content/public/browser/web_contents.h
index 9ccb6fea4c4cedbcd874a50780f0e94df9807a8e..8cf454ca8493b7a54eae0f194a76fc1de22e106f 100644
--- a/content/public/browser/web_contents.h
+++ b/content/public/browser/web_contents.h
@@ -691,9 +691,10 @@ class WebContents : public PageNavigator,
// Returns true if audio has recently been audible from the WebContents.
virtual bool WasRecentlyAudible() = 0;
- typedef base::Callback<void(const Manifest&)> GetManifestCallback;
+ typedef base::Callback<void(const GURL&, const Manifest&)>
+ GetManifestCallback;
- // Requests the Manifest of the main frame's document.
+ // Requests the manifest URL and the Manifest of the main frame's document.
virtual void GetManifest(const GetManifestCallback& callback) = 0;
typedef base::Callback<void(bool)> HasManifestCallback;
« no previous file with comments | « content/common/manifest_manager_messages.h ('k') | content/renderer/devtools/devtools_agent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698