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

Unified Diff: third_party/WebKit/Source/web/ServiceWorkerGlobalScopeClientImpl.cpp

Issue 2746783002: [ServiceWorker] Mojofy InstallEvent of Service Worker (Closed)
Patch Set: Rebase and address shimazu's comment #33 Created 3 years, 8 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: third_party/WebKit/Source/web/ServiceWorkerGlobalScopeClientImpl.cpp
diff --git a/third_party/WebKit/Source/web/ServiceWorkerGlobalScopeClientImpl.cpp b/third_party/WebKit/Source/web/ServiceWorkerGlobalScopeClientImpl.cpp
index e45583cb91ee7d80258285f00d803e1f9d55cdb9..17ee6949410a5b2c49eae41dbca4aa2d13bab2dd 100644
--- a/third_party/WebKit/Source/web/ServiceWorkerGlobalScopeClientImpl.cpp
+++ b/third_party/WebKit/Source/web/ServiceWorkerGlobalScopeClientImpl.cpp
@@ -230,9 +230,10 @@ void ServiceWorkerGlobalScopeClientImpl::Navigate(
}
void ServiceWorkerGlobalScopeClientImpl::RegisterForeignFetchScopes(
+ const int event_id,
const WebVector<WebURL>& sub_scopes,
const WebVector<WebSecurityOrigin>& origins) {
- client_.RegisterForeignFetchScopes(sub_scopes, origins);
+ client_.RegisterForeignFetchScopes(event_id, sub_scopes, origins);
}
ServiceWorkerGlobalScopeClientImpl::ServiceWorkerGlobalScopeClientImpl(

Powered by Google App Engine
This is Rietveld 408576698