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

Unified Diff: chrome/browser/android/webapk/webapk_installer.h

Issue 2528073002: Add a flag in WebAPK's proto when the Web App Manifest is no longer available. (Closed)
Patch Set: Fix the compile error. Created 4 years 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: chrome/browser/android/webapk/webapk_installer.h
diff --git a/chrome/browser/android/webapk/webapk_installer.h b/chrome/browser/android/webapk/webapk_installer.h
index c24a66886f1d919d5d86d9a41f6c0baaeb25b304..6258b8d5536e5350cb738f145b46b5bf419d79ac 100644
--- a/chrome/browser/android/webapk/webapk_installer.h
+++ b/chrome/browser/android/webapk/webapk_installer.h
@@ -67,7 +67,9 @@ class WebApkInstaller : public net::URLFetcherDelegate {
const FinishCallback& callback,
const std::string& icon_murmur2_hash,
const std::string& webapk_package,
- int webapk_version);
+ int webapk_version,
+ bool stale_manifest,
+ const std::vector<std::string>& icon_hashs);
// Same as UpdateAsync() but uses the passed in |request_context_getter|.
void UpdateAsyncWithURLRequestContextGetter(
@@ -75,7 +77,9 @@ class WebApkInstaller : public net::URLFetcherDelegate {
const FinishCallback& callback,
const std::string& icon_murmur2_hash,
const std::string& webapk_package,
- int webapk_version);
+ int webapk_version,
+ bool stale_manifest,
+ const std::vector<std::string>& icon_hashs);
// Sets the timeout for the server requests.
void SetTimeoutMs(int timeout_ms);

Powered by Google App Engine
This is Rietveld 408576698