Index: Source/web/WebStorageEventDispatcherImpl.cpp |
diff --git a/Source/web/WebStorageEventDispatcherImpl.cpp b/Source/web/WebStorageEventDispatcherImpl.cpp |
index e70aa07dadbb3ddbb30a95ca8b9355ec66575acb..17798e4cde595de644b0a572f9d6fe30ac11c5bb 100644 |
--- a/Source/web/WebStorageEventDispatcherImpl.cpp |
+++ b/Source/web/WebStorageEventDispatcherImpl.cpp |
@@ -46,8 +46,8 @@ void WebStorageEventDispatcher::dispatchLocalStorageEvent( |
const WebURL& pageURL, WebStorageArea* sourceAreaInstance, |
bool originatedInProcess) |
{ |
- RefPtr<blink::SecurityOrigin> securityOrigin = blink::SecurityOrigin::create(origin); |
- blink::StorageArea::dispatchLocalStorageEvent( |
+ RefPtr<SecurityOrigin> securityOrigin = SecurityOrigin::create(origin); |
+ StorageArea::dispatchLocalStorageEvent( |
key, oldValue, newValue, securityOrigin.get(), pageURL, |
sourceAreaInstance, originatedInProcess); |
} |
@@ -58,8 +58,8 @@ void WebStorageEventDispatcher::dispatchSessionStorageEvent( |
const WebURL& pageURL, const WebStorageNamespace& sessionNamespace, |
WebStorageArea* sourceAreaInstance, bool originatedInProcess) |
{ |
- RefPtr<blink::SecurityOrigin> securityOrigin = blink::SecurityOrigin::create(origin); |
- blink::StorageArea::dispatchSessionStorageEvent( |
+ RefPtr<SecurityOrigin> securityOrigin = SecurityOrigin::create(origin); |
+ StorageArea::dispatchSessionStorageEvent( |
key, oldValue, newValue, securityOrigin.get(), pageURL, |
sessionNamespace, sourceAreaInstance, originatedInProcess); |
} |