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

Unified Diff: Source/web/ServiceWorkerGlobalScopeClientImpl.cpp

Issue 1029423004: Cache Storage: Add Platform API to retrieve CacheStorage for origin (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 9 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 0aca78fadbaab544ff4ee2c1094b46f8638bc270..26498d83a18210d1a8c96402e68dbae1702c37f4 100644
--- a/Source/web/ServiceWorkerGlobalScopeClientImpl.cpp
+++ b/Source/web/ServiceWorkerGlobalScopeClientImpl.cpp
@@ -32,8 +32,10 @@
#include "web/ServiceWorkerGlobalScopeClientImpl.h"
#include "modules/fetch/Response.h"
+#include "public/platform/Platform.h"
michaeln 2015/03/25 00:12:35 what pulled the new includes in?
jsbell 2015/03/25 16:25:52 Oops, residue from earlier tinkering. Removed.
#include "public/platform/WebServiceWorkerResponse.h"
#include "public/platform/WebURL.h"
+#include "public/web/WebSecurityOrigin.h"
#include "public/web/WebServiceWorkerContextClient.h"
#include "wtf/PassOwnPtr.h"
@@ -73,11 +75,6 @@ WebURL ServiceWorkerGlobalScopeClientImpl::scope() const
return m_client.scope();
}
-WebServiceWorkerCacheStorage* ServiceWorkerGlobalScopeClientImpl::cacheStorage() const
-{
- return m_client.cacheStorage();
-}
-
void ServiceWorkerGlobalScopeClientImpl::didHandleActivateEvent(int eventID, WebServiceWorkerEventResult result)
{
m_client.didHandleActivateEvent(eventID, result);

Powered by Google App Engine
This is Rietveld 408576698