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