Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1013)

Side by Side Diff: content/browser/indexed_db/indexed_db_database_callbacks.h

Issue 2438233004: Make IndexedDBConnection IDs independent from the IPC database ID. (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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"
(...skipping 16 matching lines...) Expand all
27 int32_t ipc_thread_id, 27 int32_t ipc_thread_id,
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(int64_t host_transaction_id, 33 virtual void OnAbort(int64_t host_transaction_id,
34 const IndexedDBDatabaseError& error); 34 const IndexedDBDatabaseError& error);
35 virtual void OnComplete(int64_t host_transaction_id); 35 virtual void OnComplete(int64_t host_transaction_id);
36 virtual void OnDatabaseChange( 36 virtual void OnDatabaseChange(
37 int32_t ipc_database_id,
38 std::unique_ptr<IndexedDBObserverChanges> changes); 37 std::unique_ptr<IndexedDBObserverChanges> changes);
39 38
40 protected: 39 protected:
41 virtual ~IndexedDBDatabaseCallbacks(); 40 virtual ~IndexedDBDatabaseCallbacks();
42 41
43 private: 42 private:
44 friend class base::RefCounted<IndexedDBDatabaseCallbacks>; 43 friend class base::RefCounted<IndexedDBDatabaseCallbacks>;
45 44
46 class IOThreadHelper; 45 class IOThreadHelper;
47 46
48 scoped_refptr<IndexedDBDispatcherHost> dispatcher_host_; 47 scoped_refptr<IndexedDBDispatcherHost> dispatcher_host_;
49 int32_t ipc_thread_id_; 48 int32_t ipc_thread_id_;
50 std::unique_ptr<IOThreadHelper, BrowserThread::DeleteOnIOThread> io_helper_; 49 std::unique_ptr<IOThreadHelper, BrowserThread::DeleteOnIOThread> io_helper_;
51 base::ThreadChecker thread_checker_; 50 base::ThreadChecker thread_checker_;
52 51
53 DISALLOW_COPY_AND_ASSIGN(IndexedDBDatabaseCallbacks); 52 DISALLOW_COPY_AND_ASSIGN(IndexedDBDatabaseCallbacks);
54 }; 53 };
55 54
56 } // namespace content 55 } // namespace content
57 56
58 #endif // CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_DATABASE_CALLBACKS_H_ 57 #endif // CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_DATABASE_CALLBACKS_H_
OLDNEW
« no previous file with comments | « content/browser/indexed_db/indexed_db_database.cc ('k') | content/browser/indexed_db/indexed_db_database_callbacks.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698