| Index: Source/web/StorageClientImpl.cpp
|
| diff --git a/Source/web/StorageClientImpl.cpp b/Source/web/StorageClientImpl.cpp
|
| index 28ccfcebda50b2023c36cf82bf8b960767c99563..62846ea7af77c6564fdf66df57022b7da31a1758 100644
|
| --- a/Source/web/StorageClientImpl.cpp
|
| +++ b/Source/web/StorageClientImpl.cpp
|
| @@ -40,15 +40,15 @@ StorageClientImpl::StorageClientImpl(WebViewImpl* webView)
|
| {
|
| }
|
|
|
| -PassOwnPtr<WebCore::StorageNamespace> StorageClientImpl::createSessionStorageNamespace()
|
| +PassOwnPtr<blink::StorageNamespace> StorageClientImpl::createSessionStorageNamespace()
|
| {
|
| - return adoptPtr(new WebCore::StorageNamespace(adoptPtr(m_webView->client()->createSessionStorageNamespace())));
|
| + return adoptPtr(new blink::StorageNamespace(adoptPtr(m_webView->client()->createSessionStorageNamespace())));
|
| }
|
|
|
| -bool StorageClientImpl::canAccessStorage(WebCore::LocalFrame* frame, WebCore::StorageType type) const
|
| +bool StorageClientImpl::canAccessStorage(blink::LocalFrame* frame, blink::StorageType type) const
|
| {
|
| WebLocalFrameImpl* webFrame = WebLocalFrameImpl::fromFrame(frame);
|
| - return !webFrame->permissionClient() || webFrame->permissionClient()->allowStorage(type == WebCore::LocalStorage);
|
| + return !webFrame->permissionClient() || webFrame->permissionClient()->allowStorage(type == blink::LocalStorage);
|
| }
|
|
|
| } // namespace blink
|
|
|