blob: 57d3017c1687315d812f79c4f413b91e224413c5 [file] [log] [blame]
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_DATABASE_CALLBACKS_H_
#define CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_DATABASE_CALLBACKS_H_
#include <stdint.h>
#include "base/memory/scoped_refptr.h"
#include "base/sequence_checker.h"
#include "base/task/sequenced_task_runner.h"
#include "content/common/content_export.h"
#include "mojo/public/cpp/bindings/associated_remote.h"
#include "mojo/public/cpp/bindings/pending_associated_remote.h"
#include "third_party/blink/public/mojom/indexeddb/indexeddb.mojom.h"
namespace content {
class IndexedDBContextImpl;
class IndexedDBDatabaseError;
class IndexedDBTransaction;
// Expected to be constructed/called/deleted on IDB sequence.
class CONTENT_EXPORT IndexedDBDatabaseCallbacks
: public base::RefCounted<IndexedDBDatabaseCallbacks> {
public:
IndexedDBDatabaseCallbacks(
scoped_refptr<IndexedDBContextImpl> context,
mojo::PendingAssociatedRemote<blink::mojom::IDBDatabaseCallbacks>
callbacks_remote,
base::SequencedTaskRunner* idb_runner);
IndexedDBDatabaseCallbacks(const IndexedDBDatabaseCallbacks&) = delete;
IndexedDBDatabaseCallbacks& operator=(const IndexedDBDatabaseCallbacks&) =
delete;
virtual void OnForcedClose();
virtual void OnVersionChange(int64_t old_version, int64_t new_version);
virtual void OnAbort(const IndexedDBTransaction& transaction,
const IndexedDBDatabaseError& error);
virtual void OnComplete(const IndexedDBTransaction& transaction);
protected:
virtual ~IndexedDBDatabaseCallbacks();
private:
friend class base::RefCounted<IndexedDBDatabaseCallbacks>;
bool complete_ = false;
scoped_refptr<IndexedDBContextImpl> indexed_db_context_;
mojo::AssociatedRemote<blink::mojom::IDBDatabaseCallbacks> callbacks_;
SEQUENCE_CHECKER(sequence_checker_);
};
} // namespace content
#endif // CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_DATABASE_CALLBACKS_H_