X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fthird_party%2FWebKit%2FSource%2Fweb%2FWebStorageEventDispatcherImpl.cpp;h=17798e4cde595de644b0a572f9d6fe30ac11c5bb;hb=4a1a0bdd01eef90b0826a0e761d3379d3715c10f;hp=9f9aea4a1dfd521ccbb95a8299a83185cfa18911;hpb=b1be5ca53587d23e7aeb77b26861fdc0a181ffd8;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/third_party/WebKit/Source/web/WebStorageEventDispatcherImpl.cpp b/src/third_party/WebKit/Source/web/WebStorageEventDispatcherImpl.cpp index 9f9aea4..17798e4 100644 --- a/src/third_party/WebKit/Source/web/WebStorageEventDispatcherImpl.cpp +++ b/src/third_party/WebKit/Source/web/WebStorageEventDispatcherImpl.cpp @@ -46,8 +46,8 @@ void WebStorageEventDispatcher::dispatchLocalStorageEvent( const WebURL& pageURL, WebStorageArea* sourceAreaInstance, bool originatedInProcess) { - RefPtr securityOrigin = WebCore::SecurityOrigin::create(origin); - WebCore::StorageArea::dispatchLocalStorageEvent( + RefPtr 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 securityOrigin = WebCore::SecurityOrigin::create(origin); - WebCore::StorageArea::dispatchSessionStorageEvent( + RefPtr securityOrigin = SecurityOrigin::create(origin); + StorageArea::dispatchSessionStorageEvent( key, oldValue, newValue, securityOrigin.get(), pageURL, sessionNamespace, sourceAreaInstance, originatedInProcess); }