| Index: Source/web/WebStorageEventDispatcherImpl.cpp
|
| diff --git a/Source/web/WebStorageEventDispatcherImpl.cpp b/Source/web/WebStorageEventDispatcherImpl.cpp
|
| index 9f9aea4a1dfd521ccbb95a8299a83185cfa18911..e70aa07dadbb3ddbb30a95ca8b9355ec66575acb 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<WebCore::SecurityOrigin> securityOrigin = WebCore::SecurityOrigin::create(origin);
|
| - WebCore::StorageArea::dispatchLocalStorageEvent(
|
| + RefPtr<blink::SecurityOrigin> securityOrigin = blink::SecurityOrigin::create(origin);
|
| + blink::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<WebCore::SecurityOrigin> securityOrigin = WebCore::SecurityOrigin::create(origin);
|
| - WebCore::StorageArea::dispatchSessionStorageEvent(
|
| + RefPtr<blink::SecurityOrigin> securityOrigin = blink::SecurityOrigin::create(origin);
|
| + blink::StorageArea::dispatchSessionStorageEvent(
|
| key, oldValue, newValue, securityOrigin.get(), pageURL,
|
| sessionNamespace, sourceAreaInstance, originatedInProcess);
|
| }
|
|
|