Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1855)

Unified Diff: Source/web/IndexedDBClientImpl.cpp

Issue 225023020: IDBFactoryBackend -> IndexedDBClient, remove indexeddb/chromium (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rename some lingering 'factory' ferences to 'client' Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/web/IndexedDBClientImpl.h ('k') | Source/web/WebKit.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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());
« no previous file with comments | « Source/web/IndexedDBClientImpl.h ('k') | Source/web/WebKit.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698