andersca@apple.com | db84e6e | 2010-06-18 20:08:29 +0000 | [diff] [blame] | 1 | /* |
ap@apple.com | 9416a2e | 2012-10-24 17:28:14 +0000 | [diff] [blame] | 2 | * Copyright (C) 2010, 2011, 2012 Apple Inc. All rights reserved. |
andersca@apple.com | db84e6e | 2010-06-18 20:08:29 +0000 | [diff] [blame] | 3 | * |
| 4 | * Redistribution and use in source and binary forms, with or without |
| 5 | * modification, are permitted provided that the following conditions |
| 6 | * are met: |
| 7 | * 1. Redistributions of source code must retain the above copyright |
| 8 | * notice, this list of conditions and the following disclaimer. |
| 9 | * 2. Redistributions in binary form must reproduce the above copyright |
| 10 | * notice, this list of conditions and the following disclaimer in the |
| 11 | * documentation and/or other materials provided with the distribution. |
| 12 | * |
| 13 | * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' |
| 14 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, |
| 15 | * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 16 | * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS |
| 17 | * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 18 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 19 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 20 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 21 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 22 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF |
| 23 | * THE POSSIBILITY OF SUCH DAMAGE. |
| 24 | */ |
| 25 | |
commit-queue@webkit.org | 3959026 | 2017-04-06 22:58:08 +0000 | [diff] [blame] | 26 | #pragma once |
andersca@apple.com | db84e6e | 2010-06-18 20:08:29 +0000 | [diff] [blame] | 27 | |
andersca@apple.com | db84e6e | 2010-06-18 20:08:29 +0000 | [diff] [blame] | 28 | namespace WebCore { |
| 29 | |
antti@apple.com | c86c65b | 2015-12-03 12:51:17 +0000 | [diff] [blame] | 30 | class BlobRegistry; |
beidson@apple.com | 888d153a | 2012-10-24 20:49:23 +0000 | [diff] [blame] | 31 | class LoaderStrategy; |
enrica@apple.com | 58eb2d4 | 2012-02-13 22:04:29 +0000 | [diff] [blame] | 32 | class PasteboardStrategy; |
andersca@apple.com | db84e6e | 2010-06-18 20:08:29 +0000 | [diff] [blame] | 33 | |
| 34 | class PlatformStrategies { |
| 35 | public: |
beidson@apple.com | 888d153a | 2012-10-24 20:49:23 +0000 | [diff] [blame] | 36 | LoaderStrategy* loaderStrategy() |
| 37 | { |
| 38 | if (!m_loaderStrategy) |
| 39 | m_loaderStrategy = createLoaderStrategy(); |
| 40 | return m_loaderStrategy; |
| 41 | } |
| 42 | |
ap@apple.com | 9416a2e | 2012-10-24 17:28:14 +0000 | [diff] [blame] | 43 | PasteboardStrategy* pasteboardStrategy() |
| 44 | { |
| 45 | if (!m_pasteboardStrategy) |
| 46 | m_pasteboardStrategy = createPasteboardStrategy(); |
| 47 | return m_pasteboardStrategy; |
| 48 | } |
| 49 | |
antti@apple.com | c86c65b | 2015-12-03 12:51:17 +0000 | [diff] [blame] | 50 | BlobRegistry* blobRegistry() |
| 51 | { |
| 52 | if (!m_blobRegistry) |
| 53 | m_blobRegistry = createBlobRegistry(); |
| 54 | return m_blobRegistry; |
| 55 | } |
| 56 | |
andersca@apple.com | db84e6e | 2010-06-18 20:08:29 +0000 | [diff] [blame] | 57 | protected: |
commit-queue@webkit.org | cea833d | 2017-10-20 20:58:49 +0000 | [diff] [blame] | 58 | PlatformStrategies() = default; |
andersca@apple.com | db84e6e | 2010-06-18 20:08:29 +0000 | [diff] [blame] | 59 | |
weinig@apple.com | 4977ae4 | 2010-07-22 18:18:26 +0000 | [diff] [blame] | 60 | virtual ~PlatformStrategies() |
| 61 | { |
| 62 | } |
| 63 | |
| 64 | private: |
beidson@apple.com | 888d153a | 2012-10-24 20:49:23 +0000 | [diff] [blame] | 65 | virtual LoaderStrategy* createLoaderStrategy() = 0; |
ap@apple.com | 9416a2e | 2012-10-24 17:28:14 +0000 | [diff] [blame] | 66 | virtual PasteboardStrategy* createPasteboardStrategy() = 0; |
antti@apple.com | c86c65b | 2015-12-03 12:51:17 +0000 | [diff] [blame] | 67 | virtual BlobRegistry* createBlobRegistry() = 0; |
andersca@apple.com | db84e6e | 2010-06-18 20:08:29 +0000 | [diff] [blame] | 68 | |
antti@apple.com | c86c65b | 2015-12-03 12:51:17 +0000 | [diff] [blame] | 69 | LoaderStrategy* m_loaderStrategy { }; |
| 70 | PasteboardStrategy* m_pasteboardStrategy { }; |
antti@apple.com | c86c65b | 2015-12-03 12:51:17 +0000 | [diff] [blame] | 71 | BlobRegistry* m_blobRegistry { }; |
andersca@apple.com | db84e6e | 2010-06-18 20:08:29 +0000 | [diff] [blame] | 72 | }; |
| 73 | |
conrad_shultz@apple.com | b530cf1 | 2015-03-16 17:13:04 +0000 | [diff] [blame] | 74 | WEBCORE_EXPORT PlatformStrategies* platformStrategies(); |
achristensen@apple.com | 985685e | 2014-08-22 04:21:18 +0000 | [diff] [blame] | 75 | WEBCORE_EXPORT void setPlatformStrategies(PlatformStrategies*); |
andersca@apple.com | db84e6e | 2010-06-18 20:08:29 +0000 | [diff] [blame] | 76 | |
| 77 | } // namespace WebCore |