Index: Source/modules/serviceworkers/Cache.h |
diff --git a/Source/modules/serviceworkers/Cache.h b/Source/modules/serviceworkers/Cache.h |
index 9f7c8793ec5c35e9922f7d2fa7d2a41c8b68e678..6bb1ea3a6db115c5eb8f0743b55d27471e53d753 100644 |
--- a/Source/modules/serviceworkers/Cache.h |
+++ b/Source/modules/serviceworkers/Cache.h |
@@ -5,6 +5,7 @@ |
#ifndef Cache_h |
#define Cache_h |
+#include "bindings/v8/ScriptState.h" |
#include "bindings/v8/ScriptWrappable.h" |
#include "wtf/Forward.h" |
#include "wtf/PassRefPtr.h" |
@@ -21,8 +22,8 @@ public: |
static PassRefPtr<Cache> create(const Vector<String>& urlStrings); |
~Cache(); |
- ScriptPromise match(ExecutionContext*, const String& urlString); |
- ScriptPromise ready(ExecutionContext*); |
+ ScriptPromise match(ScriptState*, const String& urlString); |
+ ScriptPromise ready(ScriptState*); |
private: |
Cache(); |