Cancel composition when focused node was changed
[framework/web/webkit-efl.git] / Source / WebKit2 / WebProcess / WebProcess.messages.in
1 # Copyright (C) 2010 Apple Inc. All rights reserved.
2 #
3 # Redistribution and use in source and binary forms, with or without
4 # modification, are permitted provided that the following conditions
5 # are met:
6 # 1.  Redistributions of source code must retain the above copyright
7 #     notice, this list of conditions and the following disclaimer.
8 # 2.  Redistributions in binary form must reproduce the above copyright
9 #     notice, this list of conditions and the following disclaimer in the
10 #     documentation and/or other materials provided with the distribution.
11 #
12 # THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND
13 # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
14 # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
15 # DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR
16 # ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
17 # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
18 # SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
19 # CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
20 # OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
21 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
22
23 messages -> WebProcess {
24     # Initialize the WebProcess. 
25     InitializeWebProcess(WebKit::WebProcessCreationParameters processCreationParameters, WebKit::WebContextUserMessageEncoder initializationUserData)
26
27     # Create a new page.
28     CreateWebPage(uint64_t newPageID, WebKit::WebPageCreationParameters pageCreationParameters)
29
30     # Visited link tracking.
31     SetVisitedLinkTable(WebKit::SharedMemory::Handle handle)
32     VisitedLinkStateChanged(Vector<WebCore::LinkHash> linkHashes)
33     AllVisitedLinkStateChanged()
34
35     # Global preferences.
36     SetShouldTrackVisitedLinks(bool shouldTrackVisitedLinks)
37     SetCacheModel(uint32_t cacheModel)
38     SetCacheDisabled(bool cacheDisabled)
39     RegisterURLSchemeAsEmptyDocument(WTF::String scheme)
40     RegisterURLSchemeAsSecure(WTF::String scheme)
41     SetDomainRelaxationForbiddenForURLScheme(WTF::String scheme)
42     SetDefaultRequestTimeoutInterval(double timeoutInterval)
43     SetAlwaysUsesComplexTextCodePath(bool alwaysUseComplexText)
44     SetShouldUseFontSmoothing(bool useFontSmoothing)
45     UserPreferredLanguagesChanged(Vector<WTF::String> languages)
46     FullKeyboardAccessModeChanged(bool fullKeyboardAccessEnabled)
47 #if PLATFORM(WIN)
48     SetShouldPaintNativeControls(bool shouldPaintNativeControls)
49 #endif
50
51     # Plug-ins.
52
53 #if !ENABLE(PLUGIN_PROCESS)
54     GetSitesWithPluginData(Vector<WTF::String> pluginPaths, uint64_t callbackID)
55     ClearPluginSiteData(Vector<WTF::String> pluginPaths, Vector<WTF::String> sites, uint64_t flags, uint64_t maxAgeInSeconds, uint64_t callbackID)
56 #endif
57
58     DidGetPlugins(uint64_t requestID, Vector<WebCore::PluginInfo> plugins) DispatchOnConnectionQueue
59
60 #if ENABLE(PLUGIN_PROCESS)
61     PluginProcessCrashed(String pluginProcess) DispatchOnConnectionQueue
62 #endif
63
64     void StartMemorySampler(WebKit::SandboxExtension::Handle sampleLogFileHandle, WTF::String sampleLogFilePath, double interval);
65     void StopMemorySampler();
66
67     # Downloads. This should really be in a Download.messages.in, but it seemed unnecessary to create a new file just for
68     # two messages.
69     DownloadRequest(uint64_t downloadID, uint64_t initiatingPageID, WebCore::ResourceRequest request)
70     CancelDownload(uint64_t downloadID)
71 #if PLATFORM(QT)
72     StartTransfer(uint64_t downloadID, WTF::String destination)
73 #endif
74
75     SetTextCheckerState(WebKit::TextCheckerState textCheckerState)
76
77     SetEnhancedAccessibility(bool flag)
78
79     GetWebCoreStatistics(uint64_t callbackID)
80     GarbageCollectJavaScriptObjects()
81     SetJavaScriptGarbageCollectorTimerEnabled(bool enable)
82
83 #if USE(SECURITY_FRAMEWORK)
84     SecItemResponse(uint64_t requestID, WebKit::SecItemResponseData response) DispatchOnConnectionQueue
85     SecKeychainItemResponse(uint64_t requestID, WebKit::SecKeychainItemResponseData response) DispatchOnConnectionQueue
86 #endif
87
88 #if ENABLE(TIZEN_WEBKIT2_PROXY)
89     SetProxy(WTF::String proxyAddress)
90 #endif
91 #if ENABLE(TIZEN_SESSION_REQUEST_CANCEL)
92     AbortSession()
93 #endif
94
95 #if ENABLE(TIZEN_CERTIFICATE_HANDLING)
96     SetCertificateFile(WTF::String certificateFile)
97 #endif
98
99 #if ENABLE(TIZEN_WEBKIT2_TILED_AC_SHARED_PLATFORM_SURFACE)
100     RemovePlatformSurfaceFromPool(int platformSurfaceId)
101 #endif
102
103 #if ENABLE(TIZEN_WEBKIT2_MEMORY_SAVING_MODE)
104     SetMemorySavingMode(bool mode)
105 #endif
106
107 #if ENABLE(TIZEN_WEBKIT2_CONTEXT_X_WINDOW)
108     SetXWindow(unsigned xWindow)
109 #endif
110
111 #if ENABLE(TIZEN_EXTENSIBLE_API)
112     SetTizenExtensibleAPI(int extensibleAPI, bool enable)
113 #endif
114
115 #if ENABLE(TIZEN_RESET_PATH)
116     ResetStoragePath()
117 #endif
118
119 #if ENABLE(TIZEN_INDEXED_DATABASE)
120     DeleteIndexedDatabaseAll()
121 #endif
122 }