Cancel composition when focused node was changed
[framework/web/webkit-efl.git] / Source / WebKit2 / WebProcess / WebCoreSupport / WebPlatformStrategies.h
1 /*
2  * Copyright (C) 2010 Apple Inc. All rights reserved.
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
26 #ifndef WebPlatformStrategies_h
27 #define WebPlatformStrategies_h
28
29 #if USE(PLATFORM_STRATEGIES)
30
31 #include <WebCore/CookiesStrategy.h>
32 #include <WebCore/PasteboardStrategy.h>
33 #include <WebCore/PlatformStrategies.h>
34 #include <WebCore/PluginStrategy.h>
35 #include <WebCore/VisitedLinkStrategy.h>
36
37 namespace WebKit {
38
39 class WebPlatformStrategies : public WebCore::PlatformStrategies, private WebCore::CookiesStrategy, private WebCore::PluginStrategy, private WebCore::VisitedLinkStrategy, private WebCore::PasteboardStrategy {
40 public:
41     static void initialize();
42     
43 private:
44     WebPlatformStrategies();
45     
46     // WebCore::PlatformStrategies
47     virtual WebCore::CookiesStrategy* createCookiesStrategy() OVERRIDE;
48     virtual WebCore::PluginStrategy* createPluginStrategy() OVERRIDE;
49     virtual WebCore::VisitedLinkStrategy* createVisitedLinkStrategy() OVERRIDE;
50     virtual WebCore::PasteboardStrategy* createPasteboardStrategy() OVERRIDE;
51
52     // WebCore::CookiesStrategy
53     virtual void notifyCookiesChanged() OVERRIDE;
54
55     // WebCore::PluginStrategy
56     virtual void refreshPlugins() OVERRIDE;
57     virtual void getPluginInfo(const WebCore::Page*, Vector<WebCore::PluginInfo>&) OVERRIDE;
58     void populatePluginCache();
59
60     // WebCore::VisitedLinkStrategy
61     virtual bool isLinkVisited(WebCore::Page*, WebCore::LinkHash, const WebCore::KURL& baseURL, const WTF::AtomicString& attributeURL) OVERRIDE;
62     virtual void addVisitedLink(WebCore::Page*, WebCore::LinkHash) OVERRIDE;
63
64 #if PLATFORM(MAC)
65     // WebCore::PasteboardStrategy
66     virtual void getTypes(Vector<String>& types, const String& pasteboardName) OVERRIDE;
67     virtual PassRefPtr<WebCore::SharedBuffer> bufferForType(const String& pasteboardType, const String& pasteboardName) OVERRIDE;
68     virtual void getPathnamesForType(Vector<String>& pathnames, const String& pasteboardType, const String& pasteboardName) OVERRIDE;
69     virtual String stringForType(const String& pasteboardType, const String& pasteboardName) OVERRIDE;
70     virtual int changeCount(const String& pasteboardName) OVERRIDE;
71     virtual String uniqueName() OVERRIDE;
72     virtual WebCore::Color color(const String& pasteboardName) OVERRIDE;
73     virtual WebCore::KURL url(const String& pasteboardName) OVERRIDE;
74
75     virtual void copy(const String& fromPasteboard, const String& toPasteboard) OVERRIDE;
76     virtual void addTypes(const Vector<String>& pasteboardTypes, const String& pasteboardName) OVERRIDE;
77     virtual void setTypes(const Vector<String>& pasteboardTypes, const String& pasteboardName) OVERRIDE;
78     virtual void setBufferForType(PassRefPtr<WebCore::SharedBuffer>, const String& pasteboardType, const String& pasteboardName) OVERRIDE;
79     virtual void setPathnamesForType(const Vector<String>&, const String& pasteboardType, const String& pasteboardName) OVERRIDE;
80     virtual void setStringForType(const String&, const String& pasteboardType, const String& pasteboardName) OVERRIDE;
81 #endif
82
83     bool m_pluginCacheIsPopulated;
84     bool m_shouldRefreshPlugins;
85     Vector<WebCore::PluginInfo> m_cachedPlugins;
86 };
87
88 void handleDidGetPlugins(uint64_t requestID, const Vector<WebCore::PluginInfo>&);
89
90 } // namespace WebKit
91
92 #endif // USE(PLATFORM_STRATEGIES)
93
94 #endif // WebPlatformStrategies_h