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

Unified Diff: content/browser/renderer_host/render_process_host_impl.cc

Issue 623823002: Chrome side of passing on the service worker registration with geofencing API calls. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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
Index: content/browser/renderer_host/render_process_host_impl.cc
diff --git a/content/browser/renderer_host/render_process_host_impl.cc b/content/browser/renderer_host/render_process_host_impl.cc
index 1bf8bd15e50960a6680a64191c3ba4af0bdc0ad3..a215acd1196a6051ec8ec36323d50ab54cdf3306 100644
--- a/content/browser/renderer_host/render_process_host_impl.cc
+++ b/content/browser/renderer_host/render_process_host_impl.cc
@@ -893,7 +893,8 @@ void RenderProcessHostImpl::CreateMessageFilters() {
#if defined(OS_ANDROID)
AddFilter(new ScreenOrientationMessageFilterAndroid());
#endif
- AddFilter(new GeofencingDispatcherHost(browser_context_));
+ AddFilter(
+ new GeofencingDispatcherHost(browser_context_, service_worker_filter));
Michael van Ouwerkerk 2014/10/09 12:28:09 This should pass in storage_partition_impl_->GetSe
Marijn Kruisselbrink 2014/10/09 22:28:59 That's not enough. To go from registration handle
michaeln 2014/10/13 00:32:49 Kinda messy, no? I'm not sure the mapping is need
Marijn Kruisselbrink 2014/10/13 19:29:48 Yes, that sounds much better. I've now changed it
}
int RenderProcessHostImpl::GetNextRoutingID() {

Powered by Google App Engine
This is Rietveld 408576698