| 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 15 matching lines...) Expand all Loading... |
| 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/IndexedDBClient.h" | 34 #include "modules/indexeddb/IndexedDBClient.h" |
| 35 | 35 |
| 36 namespace WebCore { | 36 namespace blink { |
| 37 | 37 |
| 38 WorkerGlobalScopeIndexedDatabase::WorkerGlobalScopeIndexedDatabase() | 38 WorkerGlobalScopeIndexedDatabase::WorkerGlobalScopeIndexedDatabase() |
| 39 { | 39 { |
| 40 } | 40 } |
| 41 | 41 |
| 42 WorkerGlobalScopeIndexedDatabase::~WorkerGlobalScopeIndexedDatabase() | 42 WorkerGlobalScopeIndexedDatabase::~WorkerGlobalScopeIndexedDatabase() |
| 43 { | 43 { |
| 44 } | 44 } |
| 45 | 45 |
| 46 const char* WorkerGlobalScopeIndexedDatabase::supplementName() | 46 const char* WorkerGlobalScopeIndexedDatabase::supplementName() |
| (...skipping 22 matching lines...) Expand all Loading... |
| 69 m_idbFactory = IDBFactory::create(IndexedDBClient::create()); | 69 m_idbFactory = IDBFactory::create(IndexedDBClient::create()); |
| 70 return m_idbFactory.get(); | 70 return m_idbFactory.get(); |
| 71 } | 71 } |
| 72 | 72 |
| 73 void WorkerGlobalScopeIndexedDatabase::trace(Visitor* visitor) | 73 void WorkerGlobalScopeIndexedDatabase::trace(Visitor* visitor) |
| 74 { | 74 { |
| 75 visitor->trace(m_idbFactory); | 75 visitor->trace(m_idbFactory); |
| 76 WillBeHeapSupplement<WorkerGlobalScope>::trace(visitor); | 76 WillBeHeapSupplement<WorkerGlobalScope>::trace(visitor); |
| 77 } | 77 } |
| 78 | 78 |
| 79 } // namespace WebCore | 79 } // namespace blink |
| OLD | NEW |