| Index: Source/web/IndexedDBClientImpl.cpp
|
| diff --git a/Source/web/IDBFactoryBackendProxy.cpp b/Source/web/IndexedDBClientImpl.cpp
|
| similarity index 91%
|
| rename from Source/web/IDBFactoryBackendProxy.cpp
|
| rename to Source/web/IndexedDBClientImpl.cpp
|
| index d70e9da0b5137da2bb8a259fb7cc43704e039e01..c51c6ffc2f9944416def2f1a25b84aebb16c31ab 100644
|
| --- a/Source/web/IDBFactoryBackendProxy.cpp
|
| +++ b/Source/web/IndexedDBClientImpl.cpp
|
| @@ -27,7 +27,7 @@
|
| */
|
|
|
| #include "config.h"
|
| -#include "IDBFactoryBackendProxy.h"
|
| +#include "IndexedDBClientImpl.h"
|
|
|
| #include "WebFrameImpl.h"
|
| #include "WebKit.h"
|
| @@ -44,12 +44,12 @@ using namespace WebCore;
|
|
|
| namespace blink {
|
|
|
| -PassRefPtr<IDBFactoryBackendInterface> IDBFactoryBackendProxy::create()
|
| +PassRefPtr<IndexedDBClient> IndexedDBClientImpl::create()
|
| {
|
| - return adoptRef(new IDBFactoryBackendProxy());
|
| + return adoptRef(new IndexedDBClientImpl());
|
| }
|
|
|
| -bool IDBFactoryBackendProxy::allowIndexedDB(ExecutionContext* context, const String& name)
|
| +bool IndexedDBClientImpl::allowIndexedDB(ExecutionContext* context, const String& name)
|
| {
|
| ASSERT_WITH_SECURITY_IMPLICATION(context->isDocument() || context->isWorkerGlobalScope());
|
|
|
|
|