Chromium Code Reviews| Index: Source/modules/indexeddb/IDBFactory.h |
| diff --git a/Source/modules/indexeddb/IDBFactory.h b/Source/modules/indexeddb/IDBFactory.h |
| index 2e845b338bb7332ad0522813ab12e0bd6725d0d9..cb97b8ffbbf0429e5d6a6d44b2c1e546766a8835 100644 |
| --- a/Source/modules/indexeddb/IDBFactory.h |
| +++ b/Source/modules/indexeddb/IDBFactory.h |
| @@ -38,14 +38,14 @@ |
| 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* factory) |
|
abarth-chromium
2014/04/10 00:33:45
s/factory/client/ ?
|
| { |
| return adoptRef(new IDBFactory(factory)); |
| } |
| @@ -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 |