OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_CHILD_INDEXED_DB_WEBIDBFACTORY_IMPL_H_ | 5 #ifndef CONTENT_CHILD_INDEXED_DB_WEBIDBFACTORY_IMPL_H_ |
6 #define CONTENT_CHILD_INDEXED_DB_WEBIDBFACTORY_IMPL_H_ | 6 #define CONTENT_CHILD_INDEXED_DB_WEBIDBFACTORY_IMPL_H_ |
7 | 7 |
8 #include "base/memory/ref_counted.h" | 8 #include "base/memory/ref_counted.h" |
| 9 #include "base/single_thread_task_runner.h" |
9 #include "content/common/indexed_db/indexed_db.mojom.h" | 10 #include "content/common/indexed_db/indexed_db.mojom.h" |
10 #include "third_party/WebKit/public/platform/WebVector.h" | 11 #include "third_party/WebKit/public/platform/WebVector.h" |
11 #include "third_party/WebKit/public/platform/modules/indexeddb/WebIDBCallbacks.h
" | 12 #include "third_party/WebKit/public/platform/modules/indexeddb/WebIDBCallbacks.h
" |
12 #include "third_party/WebKit/public/platform/modules/indexeddb/WebIDBDatabaseCal
lbacks.h" | 13 #include "third_party/WebKit/public/platform/modules/indexeddb/WebIDBDatabaseCal
lbacks.h" |
13 #include "third_party/WebKit/public/platform/modules/indexeddb/WebIDBFactory.h" | 14 #include "third_party/WebKit/public/platform/modules/indexeddb/WebIDBFactory.h" |
14 | 15 |
15 namespace blink { | 16 namespace blink { |
16 class WebSecurityOrigin; | 17 class WebSecurityOrigin; |
17 class WebString; | 18 class WebString; |
18 } | 19 } |
(...skipping 27 matching lines...) Expand all Loading... |
46 private: | 47 private: |
47 class IOThreadHelper; | 48 class IOThreadHelper; |
48 | 49 |
49 IOThreadHelper* io_helper_; | 50 IOThreadHelper* io_helper_; |
50 scoped_refptr<base::SingleThreadTaskRunner> io_runner_; | 51 scoped_refptr<base::SingleThreadTaskRunner> io_runner_; |
51 }; | 52 }; |
52 | 53 |
53 } // namespace content | 54 } // namespace content |
54 | 55 |
55 #endif // CONTENT_CHILD_INDEXED_DB_WEBIDBFACTORY_IMPL_H_ | 56 #endif // CONTENT_CHILD_INDEXED_DB_WEBIDBFACTORY_IMPL_H_ |
OLD | NEW |