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

Unified Diff: content/browser/service_worker/service_worker_disk_cache.h

Issue 293483002: Store the service worker script and its imports on first load... really (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: tests Created 6 years, 7 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/service_worker/service_worker_disk_cache.h
diff --git a/content/browser/service_worker/service_worker_disk_cache.h b/content/browser/service_worker/service_worker_disk_cache.h
index f374f029a8c8f21874fc3fff9652c8b8ee077930..3a46bbc0c4dbee6ed96c23521b255b73b46d0373 100644
--- a/content/browser/service_worker/service_worker_disk_cache.h
+++ b/content/browser/service_worker/service_worker_disk_cache.h
@@ -16,11 +16,11 @@ namespace content {
// TODO(michaeln): If this reuse sticks, refactor/move the
// resused classes to a more common location.
-class ServiceWorkerDiskCache
+class CONTENT_EXPORT ServiceWorkerDiskCache
: public appcache::AppCacheDiskCache {
};
-class ServiceWorkerResponseReader
+class CONTENT_EXPORT ServiceWorkerResponseReader
: public appcache::AppCacheResponseReader {
protected:
// Should only be constructed by the storage class.
@@ -30,7 +30,7 @@ class ServiceWorkerResponseReader
ServiceWorkerDiskCache* disk_cache);
};
-class ServiceWorkerResponseWriter
+class CONTENT_EXPORT ServiceWorkerResponseWriter
: public appcache::AppCacheResponseWriter {
protected:
// Should only be constructed by the storage class.
@@ -40,7 +40,7 @@ class ServiceWorkerResponseWriter
ServiceWorkerDiskCache* disk_cache);
};
-struct HttpResponseInfoIOBuffer
+struct CONTENT_EXPORT HttpResponseInfoIOBuffer
: public appcache::HttpResponseInfoIOBuffer {
public:
HttpResponseInfoIOBuffer() : appcache::HttpResponseInfoIOBuffer() {}

Powered by Google App Engine
This is Rietveld 408576698