summaryrefslogtreecommitdiffstats
path: root/webkit/api/public/WebStorageEventDispatcher.h
diff options
context:
space:
mode:
Diffstat (limited to 'webkit/api/public/WebStorageEventDispatcher.h')
-rw-r--r--webkit/api/public/WebStorageEventDispatcher.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/webkit/api/public/WebStorageEventDispatcher.h b/webkit/api/public/WebStorageEventDispatcher.h
index 88d0ea9..e9ed09d 100644
--- a/webkit/api/public/WebStorageEventDispatcher.h
+++ b/webkit/api/public/WebStorageEventDispatcher.h
@@ -35,6 +35,8 @@
namespace WebKit {
+ class WebURL;
+
// This is used to dispatch storage events to all pages.
// FIXME: Make this (or something) work for SessionStorage!
class WebStorageEventDispatcher {
@@ -46,7 +48,7 @@ namespace WebKit {
// Dispatch the actual event. Doesn't yet work for SessionStorage.
virtual void dispatchStorageEvent(const WebString& key, const WebString& oldValue,
const WebString& newValue, const WebString& origin,
- bool isLocalStorage) = 0;
+ const WebURL& url, bool isLocalStorage) = 0;
};
} // namespace WebKit