OLD | NEW |
| (Empty) |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_DATABASE_CALLBACKS_WRAPPER_H_ | |
6 #define CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_DATABASE_CALLBACKS_WRAPPER_H_ | |
7 | |
8 #include "base/basictypes.h" | |
9 #include "base/memory/ref_counted.h" | |
10 #include "base/memory/scoped_ptr.h" | |
11 #include "base/strings/string16.h" | |
12 #include "content/browser/indexed_db/indexed_db_database_error.h" | |
13 #include "content/common/content_export.h" | |
14 | |
15 namespace content { | |
16 class IndexedDBDatabaseCallbacks; | |
17 | |
18 class CONTENT_EXPORT IndexedDBDatabaseCallbacksWrapper | |
19 : public base::RefCounted<IndexedDBDatabaseCallbacksWrapper> { | |
20 public: | |
21 static scoped_refptr<IndexedDBDatabaseCallbacksWrapper> Create( | |
22 IndexedDBDatabaseCallbacks* callbacks) { | |
23 return make_scoped_refptr(new IndexedDBDatabaseCallbacksWrapper(callbacks)); | |
24 } | |
25 | |
26 virtual void OnForcedClose(); | |
27 virtual void OnVersionChange(int64 old_version, int64 new_version); | |
28 | |
29 virtual void OnAbort(int64 transaction_id, | |
30 const IndexedDBDatabaseError& error); | |
31 virtual void OnComplete(int64 transaction_id); | |
32 | |
33 protected: | |
34 explicit IndexedDBDatabaseCallbacksWrapper( | |
35 IndexedDBDatabaseCallbacks* callbacks); | |
36 virtual ~IndexedDBDatabaseCallbacksWrapper(); | |
37 | |
38 private: | |
39 friend class base::RefCounted<IndexedDBDatabaseCallbacksWrapper>; | |
40 | |
41 scoped_ptr<IndexedDBDatabaseCallbacks> callbacks_; | |
42 }; | |
43 | |
44 } // namespace content | |
45 | |
46 #endif // CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_DATABASE_CALLBACKS_WRAPPER_H_ | |
OLD | NEW |