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

Unified Diff: content/renderer/renderer_webapplicationcachehost_impl.cc

Issue 2501343003: PlzNavigate: AppCache support. (Closed)
Patch Set: Address review comments 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: content/renderer/renderer_webapplicationcachehost_impl.cc
diff --git a/content/renderer/renderer_webapplicationcachehost_impl.cc b/content/renderer/renderer_webapplicationcachehost_impl.cc
index 817d69d76d82a9e713bb96dc0bd5b1a81f44ec65..7ac1620e9d7ee184441fc0608c996ad227e98953 100644
--- a/content/renderer/renderer_webapplicationcachehost_impl.cc
+++ b/content/renderer/renderer_webapplicationcachehost_impl.cc
@@ -18,8 +18,9 @@ namespace content {
RendererWebApplicationCacheHostImpl::RendererWebApplicationCacheHostImpl(
RenderViewImpl* render_view,
WebApplicationCacheHostClient* client,
- AppCacheBackend* backend)
- : WebApplicationCacheHostImpl(client, backend),
+ AppCacheBackend* backend,
+ int appcache_host_id)
+ : WebApplicationCacheHostImpl(client, backend, appcache_host_id),
routing_id_(render_view->GetRoutingID()) {}
void RendererWebApplicationCacheHostImpl::OnLogMessage(

Powered by Google App Engine
This is Rietveld 408576698