| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * | 7 * |
| 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 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 */ | 27 */ |
| 28 #ifndef IndexedDBClient_h | 28 #ifndef IndexedDBClient_h |
| 29 #define IndexedDBClient_h | 29 #define IndexedDBClient_h |
| 30 | 30 |
| 31 #include "core/frame/LocalFrame.h" | 31 #include "core/frame/LocalFrame.h" |
| 32 #include "core/workers/WorkerClients.h" | 32 #include "core/workers/WorkerClients.h" |
| 33 #include "modules/ModulesExport.h" | 33 #include "modules/ModulesExport.h" |
| 34 #include "platform/Supplementable.h" | 34 #include "platform/Supplementable.h" |
| 35 #include "platform/heap/Handle.h" | 35 #include "platform/heap/Handle.h" |
| 36 #include "wtf/text/WTFString.h" | 36 #include "platform/wtf/text/WTFString.h" |
| 37 | 37 |
| 38 namespace blink { | 38 namespace blink { |
| 39 | 39 |
| 40 class ExecutionContext; | 40 class ExecutionContext; |
| 41 class LocalFrame; | 41 class LocalFrame; |
| 42 class WorkerClients; | 42 class WorkerClients; |
| 43 | 43 |
| 44 class MODULES_EXPORT IndexedDBClient | 44 class MODULES_EXPORT IndexedDBClient |
| 45 : public GarbageCollectedFinalized<IndexedDBClient>, | 45 : public GarbageCollectedFinalized<IndexedDBClient>, |
| 46 public Supplement<LocalFrame>, | 46 public Supplement<LocalFrame>, |
| (...skipping 15 matching lines...) Expand all Loading... |
| 62 }; | 62 }; |
| 63 | 63 |
| 64 MODULES_EXPORT void ProvideIndexedDBClientTo(LocalFrame&, IndexedDBClient*); | 64 MODULES_EXPORT void ProvideIndexedDBClientTo(LocalFrame&, IndexedDBClient*); |
| 65 | 65 |
| 66 MODULES_EXPORT void ProvideIndexedDBClientToWorker(WorkerClients*, | 66 MODULES_EXPORT void ProvideIndexedDBClientToWorker(WorkerClients*, |
| 67 IndexedDBClient*); | 67 IndexedDBClient*); |
| 68 | 68 |
| 69 } // namespace blink | 69 } // namespace blink |
| 70 | 70 |
| 71 #endif // IndexedDBClient_h | 71 #endif // IndexedDBClient_h |
| OLD | NEW |