OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. | 2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. |
3 * Copyright (C) 2009, 2011 Google Inc. All Rights Reserved. | 3 * Copyright (C) 2009, 2011 Google Inc. All Rights Reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
(...skipping 13 matching lines...) Expand all Loading... |
24 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 24 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
25 * | 25 * |
26 */ | 26 */ |
27 | 27 |
28 #include "config.h" | 28 #include "config.h" |
29 | 29 |
30 #include "modules/indexeddb/WorkerGlobalScopeIndexedDatabase.h" | 30 #include "modules/indexeddb/WorkerGlobalScopeIndexedDatabase.h" |
31 | 31 |
32 #include "core/dom/ExecutionContext.h" | 32 #include "core/dom/ExecutionContext.h" |
33 #include "modules/indexeddb/IDBFactory.h" | 33 #include "modules/indexeddb/IDBFactory.h" |
34 #include "modules/indexeddb/IDBFactoryBackendInterface.h" | 34 #include "modules/indexeddb/IndexedDBClient.h" |
35 | 35 |
36 namespace WebCore { | 36 namespace WebCore { |
37 | 37 |
38 WorkerGlobalScopeIndexedDatabase::WorkerGlobalScopeIndexedDatabase() | 38 WorkerGlobalScopeIndexedDatabase::WorkerGlobalScopeIndexedDatabase() |
39 { | 39 { |
40 } | 40 } |
41 | 41 |
42 WorkerGlobalScopeIndexedDatabase::~WorkerGlobalScopeIndexedDatabase() | 42 WorkerGlobalScopeIndexedDatabase::~WorkerGlobalScopeIndexedDatabase() |
43 { | 43 { |
44 } | 44 } |
(...skipping 13 matching lines...) Expand all Loading... |
58 return *supplement; | 58 return *supplement; |
59 } | 59 } |
60 | 60 |
61 IDBFactory* WorkerGlobalScopeIndexedDatabase::indexedDB(WillBeHeapSupplementable
<WorkerGlobalScope>& context) | 61 IDBFactory* WorkerGlobalScopeIndexedDatabase::indexedDB(WillBeHeapSupplementable
<WorkerGlobalScope>& context) |
62 { | 62 { |
63 return from(context).indexedDB(); | 63 return from(context).indexedDB(); |
64 } | 64 } |
65 | 65 |
66 IDBFactory* WorkerGlobalScopeIndexedDatabase::indexedDB() | 66 IDBFactory* WorkerGlobalScopeIndexedDatabase::indexedDB() |
67 { | 67 { |
68 if (!m_factoryBackend) | 68 if (!m_client) |
69 m_factoryBackend = IDBFactoryBackendInterface::create(); | 69 m_client = IndexedDBClient::create(); |
70 if (!m_idbFactory) | 70 if (!m_idbFactory) |
71 m_idbFactory = IDBFactory::create(m_factoryBackend.get()); | 71 m_idbFactory = IDBFactory::create(m_client.get()); |
72 return m_idbFactory.get(); | 72 return m_idbFactory.get(); |
73 } | 73 } |
74 | 74 |
75 void WorkerGlobalScopeIndexedDatabase::trace(Visitor*) | 75 void WorkerGlobalScopeIndexedDatabase::trace(Visitor*) |
76 { | 76 { |
77 } | 77 } |
78 | 78 |
79 } // namespace WebCore | 79 } // namespace WebCore |
OLD | NEW |