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

Unified Diff: Source/web/ServiceWorkerGlobalScopeClientImpl.cpp

Issue 424643002: Introducing the WebServiceWorkerCacheStorage (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: combine with prior CL Created 6 years, 5 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: Source/web/ServiceWorkerGlobalScopeClientImpl.cpp
diff --git a/Source/web/ServiceWorkerGlobalScopeClientImpl.cpp b/Source/web/ServiceWorkerGlobalScopeClientImpl.cpp
index 0e644187def55602aa67eb4ae8ced486fff7e2ca..88c54a0b2f43be5654d66572741f21cf1fc64db5 100644
--- a/Source/web/ServiceWorkerGlobalScopeClientImpl.cpp
+++ b/Source/web/ServiceWorkerGlobalScopeClientImpl.cpp
@@ -61,6 +61,11 @@ WebURL ServiceWorkerGlobalScopeClientImpl::scope() const
return m_client.scope();
}
+WebServiceWorkerFetchStores* ServiceWorkerGlobalScopeClientImpl::fetchStores() const
+{
+ return m_client.fetchStores();
+}
+
void ServiceWorkerGlobalScopeClientImpl::didHandleActivateEvent(int eventID, WebServiceWorkerEventResult result)
{
m_client.didHandleActivateEvent(eventID, result);

Powered by Google App Engine
This is Rietveld 408576698