summaryrefslogtreecommitdiffstats
path: root/webkit/api/src/StorageEventDispatcherChromium.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'webkit/api/src/StorageEventDispatcherChromium.cpp')
-rw-r--r--webkit/api/src/StorageEventDispatcherChromium.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/webkit/api/src/StorageEventDispatcherChromium.cpp b/webkit/api/src/StorageEventDispatcherChromium.cpp
index 9c283cd..3286929 100644
--- a/webkit/api/src/StorageEventDispatcherChromium.cpp
+++ b/webkit/api/src/StorageEventDispatcherChromium.cpp
@@ -39,6 +39,7 @@
#include "WebKit.h"
#include "WebKitClient.h"
#include "WebString.h"
+#include "WebURL.h"
namespace WebCore {
@@ -47,7 +48,7 @@ void StorageEventDispatcher::dispatch(const String& key, const String& oldValue,
SecurityOrigin* origin, Frame* sourceFrame)
{
ASSERT(!sourceFrame); // Sad, but true.
- WebKit::webKitClient()->dispatchStorageEvent(key, oldValue, newValue, origin->toString(), storageType == LocalStorage);
+ WebKit::webKitClient()->dispatchStorageEvent(key, oldValue, newValue, origin->toString(), WebKit::WebURL(), storageType == LocalStorage);
}
} // namespace WebCore