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

Unified Diff: Source/modules/indexeddb/IDBFactory.h

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/modules/indexeddb/DOMWindowIndexedDatabase.cpp ('k') | Source/modules/indexeddb/IDBFactory.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/indexeddb/IDBFactory.h
diff --git a/Source/modules/indexeddb/IDBFactory.h b/Source/modules/indexeddb/IDBFactory.h
index 2e845b338bb7332ad0522813ab12e0bd6725d0d9..431c34382cb7bbd18cb48113d969406d1abd7066 100644
--- a/Source/modules/indexeddb/IDBFactory.h
+++ b/Source/modules/indexeddb/IDBFactory.h
@@ -38,16 +38,16 @@
namespace WebCore {
class ExceptionState;
-class IDBFactoryBackendInterface;
+class IndexedDBClient;
class IDBKey;
class IDBKeyRange;
class ExecutionContext;
class IDBFactory : public ScriptWrappable, public RefCounted<IDBFactory> {
public:
- static PassRefPtr<IDBFactory> create(IDBFactoryBackendInterface* factory)
+ static PassRefPtr<IDBFactory> create(IndexedDBClient* client)
{
- return adoptRef(new IDBFactory(factory));
+ return adoptRef(new IDBFactory(client));
}
~IDBFactory();
@@ -60,11 +60,11 @@ public:
short cmp(ExecutionContext*, const ScriptValue& first, const ScriptValue& second, ExceptionState&);
private:
- explicit IDBFactory(IDBFactoryBackendInterface*);
+ explicit IDBFactory(IndexedDBClient*);
PassRefPtr<IDBOpenDBRequest> openInternal(ExecutionContext*, const String& name, int64_t version, ExceptionState&);
- RefPtr<IDBFactoryBackendInterface> m_permissionClient;
+ RefPtr<IndexedDBClient> m_permissionClient;
};
} // namespace WebCore
« no previous file with comments | « Source/modules/indexeddb/DOMWindowIndexedDatabase.cpp ('k') | Source/modules/indexeddb/IDBFactory.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698