Index: content/renderer/cache_storage/webserviceworkercachestorage_impl.h |
diff --git a/content/renderer/cache_storage/webserviceworkercachestorage_impl.h b/content/renderer/cache_storage/webserviceworkercachestorage_impl.h |
index cc6d8e8ec0c99ed07487802ef029f9b02b0dc002..de77cad88c61ab28b08d8ace37a4c7dabfa733e1 100644 |
--- a/content/renderer/cache_storage/webserviceworkercachestorage_impl.h |
+++ b/content/renderer/cache_storage/webserviceworkercachestorage_impl.h |
@@ -11,6 +11,7 @@ |
#include "third_party/WebKit/public/platform/modules/serviceworker/WebServiceWorkerCache.h" |
#include "third_party/WebKit/public/platform/modules/serviceworker/WebServiceWorkerCacheError.h" |
#include "third_party/WebKit/public/platform/modules/serviceworker/WebServiceWorkerCacheStorage.h" |
+#include "url/origin.h" |
namespace content { |
@@ -28,7 +29,7 @@ class WebServiceWorkerCacheStorageImpl |
: public blink::WebServiceWorkerCacheStorage { |
public: |
WebServiceWorkerCacheStorageImpl(ThreadSafeSender* thread_safe_sender, |
- const GURL& origin); |
+ const url::Origin& origin); |
~WebServiceWorkerCacheStorageImpl() override; |
// From WebServiceWorkerCacheStorage: |
@@ -49,7 +50,7 @@ class WebServiceWorkerCacheStorageImpl |
CacheStorageDispatcher* GetDispatcher() const; |
scoped_refptr<ThreadSafeSender> thread_safe_sender_; |
- const GURL origin_; |
+ const url::Origin origin_; |
DISALLOW_COPY_AND_ASSIGN(WebServiceWorkerCacheStorageImpl); |
}; |