X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fthird_party%2FWebKit%2FSource%2Fweb%2FWebStorageEventDispatcherImpl.cpp;h=d01938f69f03c3a74a8f3f7f1531b37f66b3382e;hb=ff3e2503a20db9193d323c1d19c38c68004dec4a;hp=b8f888d378bb83ca4f78457dfbb74a47def366b7;hpb=7338fba38ba696536d1cc9d389afd716a6ab2fe6;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 b8f888d..d01938f 100644 --- a/src/third_party/WebKit/Source/web/WebStorageEventDispatcherImpl.cpp +++ b/src/third_party/WebKit/Source/web/WebStorageEventDispatcherImpl.cpp @@ -31,8 +31,8 @@ #include "config.h" #include "WebStorageEventDispatcher.h" -#include "StorageAreaProxy.h" #include "WebViewImpl.h" +#include "core/storage/StorageArea.h" #include "platform/weborigin/KURL.h" #include "platform/weborigin/SecurityOrigin.h" #include "public/platform/WebURL.h" @@ -47,7 +47,7 @@ void WebStorageEventDispatcher::dispatchLocalStorageEvent( bool originatedInProcess) { RefPtr securityOrigin = WebCore::SecurityOrigin::create(origin); - WebCore::StorageAreaProxy::dispatchLocalStorageEvent( + WebCore::StorageArea::dispatchLocalStorageEvent( key, oldValue, newValue, securityOrigin.get(), pageURL, sourceAreaInstance, originatedInProcess); } @@ -59,7 +59,7 @@ void WebStorageEventDispatcher::dispatchSessionStorageEvent( WebStorageArea* sourceAreaInstance, bool originatedInProcess) { RefPtr securityOrigin = WebCore::SecurityOrigin::create(origin); - WebCore::StorageAreaProxy::dispatchSessionStorageEvent( + WebCore::StorageArea::dispatchSessionStorageEvent( key, oldValue, newValue, securityOrigin.get(), pageURL, sessionNamespace, sourceAreaInstance, originatedInProcess); }