Index: Source/modules/cachestorage/CacheStorage.h |
diff --git a/Source/modules/cachestorage/CacheStorage.h b/Source/modules/cachestorage/CacheStorage.h |
index 90d80328a73c60dc026fab55eae147190b0d2f84..117c39a62592fec934a42abba3a3913a14c76020 100644 |
--- a/Source/modules/cachestorage/CacheStorage.h |
+++ b/Source/modules/cachestorage/CacheStorage.h |
@@ -29,10 +29,10 @@ public: |
~CacheStorage(); |
void dispose(); |
- ScriptPromise open(ScriptState*, const String& cacheName); |
- ScriptPromise has(ScriptState*, const String& cacheName); |
- ScriptPromise deleteFunction(ScriptState*, const String& cacheName); |
- ScriptPromise keys(ScriptState*); |
+ ScriptPromise open(ScriptState*, const String& cacheName, ExceptionState&); |
+ ScriptPromise has(ScriptState*, const String& cacheName, ExceptionState&); |
+ ScriptPromise deleteFunction(ScriptState*, const String& cacheName, ExceptionState&); |
+ ScriptPromise keys(ScriptState*, ExceptionState&); |
ScriptPromise match(ScriptState*, const RequestInfo&, const CacheQueryOptions&, ExceptionState&); |
DECLARE_TRACE(); |