blob: e3db7179c9fac74dd6f493e65a3f8e04b8b30765 [file] [log] [blame]
andersca@apple.comdb84e6e2010-06-18 20:08:29 +00001/*
ap@apple.com9416a2e2012-10-24 17:28:14 +00002 * Copyright (C) 2010, 2011, 2012 Apple Inc. All rights reserved.
andersca@apple.comdb84e6e2010-06-18 20:08:29 +00003 *
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.org39590262017-04-06 22:58:08 +000026#pragma once
andersca@apple.comdb84e6e2010-06-18 20:08:29 +000027
andersca@apple.comdb84e6e2010-06-18 20:08:29 +000028namespace WebCore {
29
antti@apple.comc86c65b2015-12-03 12:51:17 +000030class BlobRegistry;
beidson@apple.com888d153a2012-10-24 20:49:23 +000031class LoaderStrategy;
enrica@apple.com58eb2d42012-02-13 22:04:29 +000032class PasteboardStrategy;
andersca@apple.comdb84e6e2010-06-18 20:08:29 +000033
34class PlatformStrategies {
35public:
beidson@apple.com888d153a2012-10-24 20:49:23 +000036 LoaderStrategy* loaderStrategy()
37 {
38 if (!m_loaderStrategy)
39 m_loaderStrategy = createLoaderStrategy();
40 return m_loaderStrategy;
41 }
42
ap@apple.com9416a2e2012-10-24 17:28:14 +000043 PasteboardStrategy* pasteboardStrategy()
44 {
45 if (!m_pasteboardStrategy)
46 m_pasteboardStrategy = createPasteboardStrategy();
47 return m_pasteboardStrategy;
48 }
49
antti@apple.comc86c65b2015-12-03 12:51:17 +000050 BlobRegistry* blobRegistry()
51 {
52 if (!m_blobRegistry)
53 m_blobRegistry = createBlobRegistry();
54 return m_blobRegistry;
55 }
56
andersca@apple.comdb84e6e2010-06-18 20:08:29 +000057protected:
commit-queue@webkit.orgcea833d2017-10-20 20:58:49 +000058 PlatformStrategies() = default;
andersca@apple.comdb84e6e2010-06-18 20:08:29 +000059
weinig@apple.com4977ae42010-07-22 18:18:26 +000060 virtual ~PlatformStrategies()
61 {
62 }
63
64private:
beidson@apple.com888d153a2012-10-24 20:49:23 +000065 virtual LoaderStrategy* createLoaderStrategy() = 0;
ap@apple.com9416a2e2012-10-24 17:28:14 +000066 virtual PasteboardStrategy* createPasteboardStrategy() = 0;
antti@apple.comc86c65b2015-12-03 12:51:17 +000067 virtual BlobRegistry* createBlobRegistry() = 0;
andersca@apple.comdb84e6e2010-06-18 20:08:29 +000068
antti@apple.comc86c65b2015-12-03 12:51:17 +000069 LoaderStrategy* m_loaderStrategy { };
70 PasteboardStrategy* m_pasteboardStrategy { };
antti@apple.comc86c65b2015-12-03 12:51:17 +000071 BlobRegistry* m_blobRegistry { };
andersca@apple.comdb84e6e2010-06-18 20:08:29 +000072};
73
conrad_shultz@apple.comb530cf12015-03-16 17:13:04 +000074WEBCORE_EXPORT PlatformStrategies* platformStrategies();
achristensen@apple.com985685e2014-08-22 04:21:18 +000075WEBCORE_EXPORT void setPlatformStrategies(PlatformStrategies*);
andersca@apple.comdb84e6e2010-06-18 20:08:29 +000076
77} // namespace WebCore