| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_DATABASE_CALLBACKS_H_ | 5 #ifndef CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_DATABASE_CALLBACKS_H_ |
| 6 #define CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_DATABASE_CALLBACKS_H_ | 6 #define CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_DATABASE_CALLBACKS_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "base/memory/weak_ptr.h" | 11 #include "base/memory/weak_ptr.h" |
| 12 #include "base/threading/thread_checker.h" | 12 #include "base/sequence_checker.h" |
| 13 #include "content/common/content_export.h" | 13 #include "content/common/content_export.h" |
| 14 #include "content/common/indexed_db/indexed_db.mojom.h" | 14 #include "content/common/indexed_db/indexed_db.mojom.h" |
| 15 #include "content/public/browser/browser_thread.h" | 15 #include "content/public/browser/browser_thread.h" |
| 16 | 16 |
| 17 namespace content { | 17 namespace content { |
| 18 class IndexedDBContextImpl; | 18 class IndexedDBContextImpl; |
| 19 class IndexedDBDatabaseError; | 19 class IndexedDBDatabaseError; |
| 20 class IndexedDBTransaction; | 20 class IndexedDBTransaction; |
| 21 | 21 |
| 22 // Expected to be constructed on IO thread and called/deleted from IDB thread. | 22 // Expected to be constructed on IO thread and called/deleted from IDB sequence. |
| 23 class CONTENT_EXPORT IndexedDBDatabaseCallbacks | 23 class CONTENT_EXPORT IndexedDBDatabaseCallbacks |
| 24 : public base::RefCounted<IndexedDBDatabaseCallbacks> { | 24 : public base::RefCounted<IndexedDBDatabaseCallbacks> { |
| 25 public: | 25 public: |
| 26 IndexedDBDatabaseCallbacks( | 26 IndexedDBDatabaseCallbacks( |
| 27 scoped_refptr<IndexedDBContextImpl> context, | 27 scoped_refptr<IndexedDBContextImpl> context, |
| 28 ::indexed_db::mojom::DatabaseCallbacksAssociatedPtrInfo callbacks_info); | 28 ::indexed_db::mojom::DatabaseCallbacksAssociatedPtrInfo callbacks_info); |
| 29 | 29 |
| 30 virtual void OnForcedClose(); | 30 virtual void OnForcedClose(); |
| 31 virtual void OnVersionChange(int64_t old_version, int64_t new_version); | 31 virtual void OnVersionChange(int64_t old_version, int64_t new_version); |
| 32 | 32 |
| 33 virtual void OnAbort(const IndexedDBTransaction& transaction, | 33 virtual void OnAbort(const IndexedDBTransaction& transaction, |
| 34 const IndexedDBDatabaseError& error); | 34 const IndexedDBDatabaseError& error); |
| 35 virtual void OnComplete(const IndexedDBTransaction& transaction); | 35 virtual void OnComplete(const IndexedDBTransaction& transaction); |
| 36 virtual void OnDatabaseChange( | 36 virtual void OnDatabaseChange( |
| 37 ::indexed_db::mojom::ObserverChangesPtr changes); | 37 ::indexed_db::mojom::ObserverChangesPtr changes); |
| 38 | 38 |
| 39 protected: | 39 protected: |
| 40 virtual ~IndexedDBDatabaseCallbacks(); | 40 virtual ~IndexedDBDatabaseCallbacks(); |
| 41 | 41 |
| 42 private: | 42 private: |
| 43 friend class base::RefCounted<IndexedDBDatabaseCallbacks>; | 43 friend class base::RefCounted<IndexedDBDatabaseCallbacks>; |
| 44 | 44 |
| 45 class IOThreadHelper; | 45 class IOThreadHelper; |
| 46 | 46 |
| 47 bool complete_ = false; | 47 bool complete_ = false; |
| 48 scoped_refptr<IndexedDBContextImpl> indexed_db_context_; | 48 scoped_refptr<IndexedDBContextImpl> indexed_db_context_; |
| 49 std::unique_ptr<IOThreadHelper, BrowserThread::DeleteOnIOThread> io_helper_; | 49 std::unique_ptr<IOThreadHelper, BrowserThread::DeleteOnIOThread> io_helper_; |
| 50 base::ThreadChecker thread_checker_; | 50 SEQUENCE_CHECKER(sequence_checker_); |
| 51 | 51 |
| 52 DISALLOW_COPY_AND_ASSIGN(IndexedDBDatabaseCallbacks); | 52 DISALLOW_COPY_AND_ASSIGN(IndexedDBDatabaseCallbacks); |
| 53 }; | 53 }; |
| 54 | 54 |
| 55 } // namespace content | 55 } // namespace content |
| 56 | 56 |
| 57 #endif // CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_DATABASE_CALLBACKS_H_ | 57 #endif // CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_DATABASE_CALLBACKS_H_ |
| OLD | NEW |