blob: 692d92013b704d5b33bc25898b287ad8ee8924bf [file] [log] [blame]
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef THIRD_PARTY_BLINK_RENDERER_MODULES_INDEXEDDB_WEB_IDB_FACTORY_IMPL_H_
#define THIRD_PARTY_BLINK_RENDERER_MODULES_INDEXEDDB_WEB_IDB_FACTORY_IMPL_H_
#include "third_party/blink/public/mojom/indexeddb/indexeddb.mojom-blink.h"
#include "third_party/blink/renderer/modules/indexeddb/idb_key_range.h"
#include "third_party/blink/renderer/modules/indexeddb/indexed_db_database_callbacks_impl.h"
#include "third_party/blink/renderer/modules/indexeddb/web_idb_callbacks.h"
#include "third_party/blink/renderer/modules/indexeddb/web_idb_database_callbacks.h"
#include "third_party/blink/renderer/modules/indexeddb/web_idb_factory.h"
namespace WTF {
class String;
}
namespace blink {
class WebIDBFactoryImpl : public WebIDBFactory {
public:
explicit WebIDBFactoryImpl(
mojom::blink::IDBFactoryPtrInfo factory_info,
scoped_refptr<base::SingleThreadTaskRunner> task_runner);
~WebIDBFactoryImpl() override;
// See web_idb_factory.h for documentation on these functions.
void GetDatabaseInfo(std::unique_ptr<WebIDBCallbacks> callbacks) override;
void GetDatabaseNames(std::unique_ptr<WebIDBCallbacks> callbacks) override;
void Open(
const WTF::String& name,
long long version,
long long transaction_id,
std::unique_ptr<WebIDBCallbacks> callbacks,
std::unique_ptr<WebIDBDatabaseCallbacks> database_callbacks) override;
void DeleteDatabase(const WTF::String& name,
std::unique_ptr<WebIDBCallbacks> callbacks,
bool force_close) override;
private:
mojom::blink::IDBCallbacksAssociatedPtrInfo GetCallbacksProxy(
std::unique_ptr<WebIDBCallbacks> callbacks);
mojom::blink::IDBDatabaseCallbacksAssociatedPtrInfo GetDatabaseCallbacksProxy(
std::unique_ptr<IndexedDBDatabaseCallbacksImpl> callbacks);
mojom::blink::IDBFactoryPtr factory_;
scoped_refptr<base::SingleThreadTaskRunner> task_runner_;
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_MODULES_INDEXEDDB_WEB_IDB_FACTORY_IMPL_H_