summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/modules/indexeddb/web_idb_factory_impl.h
blob: 692d92013b704d5b33bc25898b287ad8ee8924bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// 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_