1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
|
/*
* Copyright (C) 2010, 2011 Apple Inc. All rights reserved.
* Portions Copyright (c) 2010 Motorola Mobility, Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef WKAPICast_h
#define WKAPICast_h
#include "CacheModel.h"
#include "FontSmoothingLevel.h"
#include "HTTPCookieAcceptPolicy.h"
#include "InjectedBundleHitTestResultMediaType.h"
#include "PluginModuleInfo.h"
#include "ResourceCachesToClear.h"
#include "WKBundleHitTestResult.h"
#include "WKContext.h"
#include "WKCookieManager.h"
#include "WKCredentialTypes.h"
#include "WKPage.h"
#include "WKPreferencesRef.h"
#include "WKPreferencesRefPrivate.h"
#include "WKProtectionSpaceTypes.h"
#include "WKResourceCacheManager.h"
#include "WKSharedAPICast.h"
#include "WebGrammarDetail.h"
#include <WebCore/Credential.h>
#include <WebCore/FrameLoaderTypes.h>
#include <WebCore/PluginData.h>
#include <WebCore/ProtectionSpace.h>
#include <WebCore/Settings.h>
namespace API {
class FrameInfo;
class HitTestResult;
class Navigation;
class NavigationAction;
class NavigationData;
class NavigationResponse;
class PageConfiguration;
class ProcessPoolConfiguration;
class SessionState;
class UserContentExtension;
class UserContentExtensionStore;
class UserScript;
class WebsiteDataStore;
class WindowFeatures;
}
namespace WebKit {
class AuthenticationChallengeProxy;
class AuthenticationDecisionListener;
class DownloadProxy;
class GeolocationPermissionRequestProxy;
class NotificationPermissionRequest;
class UserMediaPermissionCheckProxy;
class UserMediaPermissionRequestProxy;
class WebBackForwardList;
class WebBackForwardListItem;
class WebBatteryManagerProxy;
class WebBatteryStatus;
class WebColorPickerResultListenerProxy;
class WebCookieManagerProxy;
class WebCredential;
class WebFormSubmissionListenerProxy;
class WebFramePolicyListenerProxy;
class WebFrameProxy;
class WebGeolocationManagerProxy;
class WebGeolocationPosition;
class WebGrammarDetail;
class WebIconDatabase;
class WebInspectorProxy;
class WebMediaSessionFocusManager;
class WebMediaSessionMetadata;
class WebNotification;
class WebNotificationManagerProxy;
class WebNotificationProvider;
class WebOpenPanelParameters;
class WebOpenPanelResultListenerProxy;
class WebPageGroup;
class WebPageProxy;
class WebPreferences;
class WebProcessPool;
class WebProtectionSpace;
class WebRenderLayer;
class WebRenderObject;
class WebTextChecker;
class WebUserContentControllerProxy;
class WebVibrationProxy;
class WebViewportAttributes;
WK_ADD_API_MAPPING(WKAuthenticationChallengeRef, AuthenticationChallengeProxy)
WK_ADD_API_MAPPING(WKAuthenticationDecisionListenerRef, AuthenticationDecisionListener)
WK_ADD_API_MAPPING(WKBackForwardListItemRef, WebBackForwardListItem)
WK_ADD_API_MAPPING(WKBackForwardListRef, WebBackForwardList)
WK_ADD_API_MAPPING(WKBatteryManagerRef, WebBatteryManagerProxy)
WK_ADD_API_MAPPING(WKBatteryStatusRef, WebBatteryStatus)
WK_ADD_API_MAPPING(WKBundleHitTestResultMediaType, BundleHitTestResultMediaType)
WK_ADD_API_MAPPING(WKColorPickerResultListenerRef, WebColorPickerResultListenerProxy)
WK_ADD_API_MAPPING(WKContextRef, WebProcessPool)
WK_ADD_API_MAPPING(WKContextConfigurationRef, API::ProcessPoolConfiguration)
WK_ADD_API_MAPPING(WKCookieManagerRef, WebCookieManagerProxy)
WK_ADD_API_MAPPING(WKCredentialRef, WebCredential)
WK_ADD_API_MAPPING(WKDownloadRef, DownloadProxy)
WK_ADD_API_MAPPING(WKFormSubmissionListenerRef, WebFormSubmissionListenerProxy)
WK_ADD_API_MAPPING(WKFramePolicyListenerRef, WebFramePolicyListenerProxy)
WK_ADD_API_MAPPING(WKFrameInfoRef, API::FrameInfo)
WK_ADD_API_MAPPING(WKFrameRef, WebFrameProxy)
WK_ADD_API_MAPPING(WKGeolocationManagerRef, WebGeolocationManagerProxy)
WK_ADD_API_MAPPING(WKGeolocationPermissionRequestRef, GeolocationPermissionRequestProxy)
WK_ADD_API_MAPPING(WKGeolocationPositionRef, WebGeolocationPosition)
WK_ADD_API_MAPPING(WKGrammarDetailRef, WebGrammarDetail)
WK_ADD_API_MAPPING(WKHitTestResultRef, API::HitTestResult)
WK_ADD_API_MAPPING(WKIconDatabaseRef, WebIconDatabase)
WK_ADD_API_MAPPING(WKInspectorRef, WebInspectorProxy)
WK_ADD_API_MAPPING(WKMediaSessionFocusManagerRef, WebMediaSessionFocusManager)
WK_ADD_API_MAPPING(WKMediaSessionMetadataRef, WebMediaSessionMetadata)
WK_ADD_API_MAPPING(WKNavigationActionRef, API::NavigationAction)
WK_ADD_API_MAPPING(WKNavigationDataRef, API::NavigationData)
WK_ADD_API_MAPPING(WKNavigationRef, API::Navigation)
WK_ADD_API_MAPPING(WKNavigationResponseRef, API::NavigationResponse)
WK_ADD_API_MAPPING(WKNotificationManagerRef, WebNotificationManagerProxy)
WK_ADD_API_MAPPING(WKNotificationPermissionRequestRef, NotificationPermissionRequest)
WK_ADD_API_MAPPING(WKNotificationProviderRef, WebNotificationProvider)
WK_ADD_API_MAPPING(WKNotificationRef, WebNotification)
WK_ADD_API_MAPPING(WKOpenPanelParametersRef, WebOpenPanelParameters)
WK_ADD_API_MAPPING(WKOpenPanelResultListenerRef, WebOpenPanelResultListenerProxy)
WK_ADD_API_MAPPING(WKPageGroupRef, WebPageGroup)
WK_ADD_API_MAPPING(WKPageConfigurationRef, API::PageConfiguration)
WK_ADD_API_MAPPING(WKPageRef, WebPageProxy)
WK_ADD_API_MAPPING(WKPreferencesRef, WebPreferences)
WK_ADD_API_MAPPING(WKProtectionSpaceRef, WebProtectionSpace)
WK_ADD_API_MAPPING(WKRenderLayerRef, WebRenderLayer)
WK_ADD_API_MAPPING(WKRenderObjectRef, WebRenderObject)
WK_ADD_API_MAPPING(WKSessionStateRef, API::SessionState)
WK_ADD_API_MAPPING(WKTextCheckerRef, WebTextChecker)
WK_ADD_API_MAPPING(WKUserContentControllerRef, WebUserContentControllerProxy)
WK_ADD_API_MAPPING(WKUserContentExtensionStoreRef, API::UserContentExtensionStore)
WK_ADD_API_MAPPING(WKUserContentFilterRef, API::UserContentExtension)
WK_ADD_API_MAPPING(WKUserMediaPermissionCheckRef, UserMediaPermissionCheckProxy)
WK_ADD_API_MAPPING(WKUserMediaPermissionRequestRef, UserMediaPermissionRequestProxy)
WK_ADD_API_MAPPING(WKUserScriptRef, API::UserScript)
WK_ADD_API_MAPPING(WKVibrationRef, WebVibrationProxy)
WK_ADD_API_MAPPING(WKViewportAttributesRef, WebViewportAttributes)
WK_ADD_API_MAPPING(WKWebsiteDataStoreRef, API::WebsiteDataStore)
WK_ADD_API_MAPPING(WKWindowFeaturesRef, API::WindowFeatures)
/* Enum conversions */
inline BundleHitTestResultMediaType toBundleHitTestResultMediaType(WKBundleHitTestResultMediaType wkMediaType)
{
switch (wkMediaType) {
case kWKBundleHitTestResultMediaTypeNone:
return BundleHitTestResultMediaTypeNone;
case kWKBundleHitTestResultMediaTypeAudio:
return BundleHitTestResultMediaTypeAudio;
case kWKBundleHitTestResultMediaTypeVideo:
return BundleHitTestResultMediaTypeVideo;
}
ASSERT_NOT_REACHED();
return BundleHitTestResultMediaTypeNone;
}
inline WKBundleHitTestResultMediaType toAPI(BundleHitTestResultMediaType mediaType)
{
switch (mediaType) {
case BundleHitTestResultMediaTypeNone:
return kWKBundleHitTestResultMediaTypeNone;
case BundleHitTestResultMediaTypeAudio:
return kWKBundleHitTestResultMediaTypeAudio;
case BundleHitTestResultMediaTypeVideo:
return kWKBundleHitTestResultMediaTypeVideo;
}
ASSERT_NOT_REACHED();
return kWKBundleHitTestResultMediaTypeNone;
}
inline CacheModel toCacheModel(WKCacheModel wkCacheModel)
{
switch (wkCacheModel) {
case kWKCacheModelDocumentViewer:
return CacheModelDocumentViewer;
case kWKCacheModelDocumentBrowser:
return CacheModelDocumentBrowser;
case kWKCacheModelPrimaryWebBrowser:
return CacheModelPrimaryWebBrowser;
}
ASSERT_NOT_REACHED();
return CacheModelDocumentViewer;
}
inline WKCacheModel toAPI(CacheModel cacheModel)
{
switch (cacheModel) {
case CacheModelDocumentViewer:
return kWKCacheModelDocumentViewer;
case CacheModelDocumentBrowser:
return kWKCacheModelDocumentBrowser;
case CacheModelPrimaryWebBrowser:
return kWKCacheModelPrimaryWebBrowser;
}
return kWKCacheModelDocumentViewer;
}
inline FontSmoothingLevel toFontSmoothingLevel(WKFontSmoothingLevel wkLevel)
{
switch (wkLevel) {
case kWKFontSmoothingLevelNoSubpixelAntiAliasing:
return FontSmoothingLevelNoSubpixelAntiAliasing;
case kWKFontSmoothingLevelLight:
return FontSmoothingLevelLight;
case kWKFontSmoothingLevelMedium:
return FontSmoothingLevelMedium;
case kWKFontSmoothingLevelStrong:
return FontSmoothingLevelStrong;
}
ASSERT_NOT_REACHED();
return FontSmoothingLevelMedium;
}
inline WKFontSmoothingLevel toAPI(FontSmoothingLevel level)
{
switch (level) {
case FontSmoothingLevelNoSubpixelAntiAliasing:
return kWKFontSmoothingLevelNoSubpixelAntiAliasing;
case FontSmoothingLevelLight:
return kWKFontSmoothingLevelLight;
case FontSmoothingLevelMedium:
return kWKFontSmoothingLevelMedium;
case FontSmoothingLevelStrong:
return kWKFontSmoothingLevelStrong;
}
ASSERT_NOT_REACHED();
return kWKFontSmoothingLevelMedium;
}
inline WKEditableLinkBehavior toAPI(WebCore::EditableLinkBehavior behavior)
{
switch (behavior) {
case WebCore::EditableLinkDefaultBehavior:
return kWKEditableLinkBehaviorDefault;
case WebCore::EditableLinkAlwaysLive:
return kWKEditableLinkBehaviorAlwaysLive;
case WebCore::EditableLinkOnlyLiveWithShiftKey:
return kWKEditableLinkBehaviorOnlyLiveWithShiftKey;
case WebCore::EditableLinkLiveWhenNotFocused:
return kWKEditableLinkBehaviorLiveWhenNotFocused;
case WebCore::EditableLinkNeverLive:
return kWKEditableLinkBehaviorNeverLive;
}
ASSERT_NOT_REACHED();
return kWKEditableLinkBehaviorNeverLive;
}
inline WebCore::EditableLinkBehavior toEditableLinkBehavior(WKEditableLinkBehavior wkBehavior)
{
switch (wkBehavior) {
case kWKEditableLinkBehaviorDefault:
return WebCore::EditableLinkDefaultBehavior;
case kWKEditableLinkBehaviorAlwaysLive:
return WebCore::EditableLinkAlwaysLive;
case kWKEditableLinkBehaviorOnlyLiveWithShiftKey:
return WebCore::EditableLinkOnlyLiveWithShiftKey;
case kWKEditableLinkBehaviorLiveWhenNotFocused:
return WebCore::EditableLinkLiveWhenNotFocused;
case kWKEditableLinkBehaviorNeverLive:
return WebCore::EditableLinkNeverLive;
}
ASSERT_NOT_REACHED();
return WebCore::EditableLinkNeverLive;
}
inline WKProtectionSpaceServerType toAPI(WebCore::ProtectionSpaceServerType type)
{
switch (type) {
case WebCore::ProtectionSpaceServerHTTP:
return kWKProtectionSpaceServerTypeHTTP;
case WebCore::ProtectionSpaceServerHTTPS:
return kWKProtectionSpaceServerTypeHTTPS;
case WebCore::ProtectionSpaceServerFTP:
return kWKProtectionSpaceServerTypeFTP;
case WebCore::ProtectionSpaceServerFTPS:
return kWKProtectionSpaceServerTypeFTPS;
case WebCore::ProtectionSpaceProxyHTTP:
return kWKProtectionSpaceProxyTypeHTTP;
case WebCore::ProtectionSpaceProxyHTTPS:
return kWKProtectionSpaceProxyTypeHTTPS;
case WebCore::ProtectionSpaceProxyFTP:
return kWKProtectionSpaceProxyTypeFTP;
case WebCore::ProtectionSpaceProxySOCKS:
return kWKProtectionSpaceProxyTypeSOCKS;
}
return kWKProtectionSpaceServerTypeHTTP;
}
inline WKProtectionSpaceAuthenticationScheme toAPI(WebCore::ProtectionSpaceAuthenticationScheme type)
{
switch (type) {
case WebCore::ProtectionSpaceAuthenticationSchemeDefault:
return kWKProtectionSpaceAuthenticationSchemeDefault;
case WebCore::ProtectionSpaceAuthenticationSchemeHTTPBasic:
return kWKProtectionSpaceAuthenticationSchemeHTTPBasic;
case WebCore::ProtectionSpaceAuthenticationSchemeHTTPDigest:
return kWKProtectionSpaceAuthenticationSchemeHTTPDigest;
case WebCore::ProtectionSpaceAuthenticationSchemeHTMLForm:
return kWKProtectionSpaceAuthenticationSchemeHTMLForm;
case WebCore::ProtectionSpaceAuthenticationSchemeNTLM:
return kWKProtectionSpaceAuthenticationSchemeNTLM;
case WebCore::ProtectionSpaceAuthenticationSchemeNegotiate:
return kWKProtectionSpaceAuthenticationSchemeNegotiate;
case WebCore::ProtectionSpaceAuthenticationSchemeClientCertificateRequested:
return kWKProtectionSpaceAuthenticationSchemeClientCertificateRequested;
case WebCore::ProtectionSpaceAuthenticationSchemeServerTrustEvaluationRequested:
return kWKProtectionSpaceAuthenticationSchemeServerTrustEvaluationRequested;
default:
return kWKProtectionSpaceAuthenticationSchemeUnknown;
}
}
inline WebCore::CredentialPersistence toCredentialPersistence(WKCredentialPersistence type)
{
switch (type) {
case kWKCredentialPersistenceNone:
return WebCore::CredentialPersistenceNone;
case kWKCredentialPersistenceForSession:
return WebCore::CredentialPersistenceForSession;
case kWKCredentialPersistencePermanent:
return WebCore::CredentialPersistencePermanent;
default:
return WebCore::CredentialPersistenceNone;
}
}
inline ResourceCachesToClear toResourceCachesToClear(WKResourceCachesToClear wkResourceCachesToClear)
{
switch (wkResourceCachesToClear) {
case WKResourceCachesToClearAll:
return AllResourceCaches;
case WKResourceCachesToClearInMemoryOnly:
return InMemoryResourceCachesOnly;
}
ASSERT_NOT_REACHED();
return AllResourceCaches;
}
inline HTTPCookieAcceptPolicy toHTTPCookieAcceptPolicy(WKHTTPCookieAcceptPolicy policy)
{
switch (policy) {
case kWKHTTPCookieAcceptPolicyAlways:
return HTTPCookieAcceptPolicyAlways;
case kWKHTTPCookieAcceptPolicyNever:
return HTTPCookieAcceptPolicyNever;
case kWKHTTPCookieAcceptPolicyOnlyFromMainDocumentDomain:
return HTTPCookieAcceptPolicyOnlyFromMainDocumentDomain;
case kWKHTTPCookieAcceptPolicyExclusivelyFromMainDocumentDomain:
return HTTPCookieAcceptPolicyExclusivelyFromMainDocumentDomain;
}
ASSERT_NOT_REACHED();
return HTTPCookieAcceptPolicyAlways;
}
inline WKHTTPCookieAcceptPolicy toAPI(HTTPCookieAcceptPolicy policy)
{
switch (policy) {
case HTTPCookieAcceptPolicyAlways:
return kWKHTTPCookieAcceptPolicyAlways;
case HTTPCookieAcceptPolicyNever:
return kWKHTTPCookieAcceptPolicyNever;
case HTTPCookieAcceptPolicyOnlyFromMainDocumentDomain:
return kWKHTTPCookieAcceptPolicyOnlyFromMainDocumentDomain;
case HTTPCookieAcceptPolicyExclusivelyFromMainDocumentDomain:
return kWKHTTPCookieAcceptPolicyExclusivelyFromMainDocumentDomain;
}
ASSERT_NOT_REACHED();
return kWKHTTPCookieAcceptPolicyAlways;
}
inline WebCore::SecurityOrigin::StorageBlockingPolicy toStorageBlockingPolicy(WKStorageBlockingPolicy policy)
{
switch (policy) {
case kWKAllowAllStorage:
return WebCore::SecurityOrigin::AllowAllStorage;
case kWKBlockThirdPartyStorage:
return WebCore::SecurityOrigin::BlockThirdPartyStorage;
case kWKBlockAllStorage:
return WebCore::SecurityOrigin::BlockAllStorage;
}
ASSERT_NOT_REACHED();
return WebCore::SecurityOrigin::AllowAllStorage;
}
inline WKStorageBlockingPolicy toAPI(WebCore::SecurityOrigin::StorageBlockingPolicy policy)
{
switch (policy) {
case WebCore::SecurityOrigin::AllowAllStorage:
return kWKAllowAllStorage;
case WebCore::SecurityOrigin::BlockThirdPartyStorage:
return kWKBlockThirdPartyStorage;
case WebCore::SecurityOrigin::BlockAllStorage:
return kWKBlockAllStorage;
}
ASSERT_NOT_REACHED();
return kWKAllowAllStorage;
}
inline WKPluginLoadPolicy toWKPluginLoadPolicy(PluginModuleLoadPolicy pluginModuleLoadPolicy)
{
switch (pluginModuleLoadPolicy) {
case PluginModuleLoadNormally:
return kWKPluginLoadPolicyLoadNormally;
case PluginModuleLoadUnsandboxed:
return kWKPluginLoadPolicyLoadUnsandboxed;
case PluginModuleBlockedForSecurity:
return kWKPluginLoadPolicyBlocked;
case PluginModuleBlockedForCompatibility:
return kWKPluginLoadPolicyBlockedForCompatibility;
}
ASSERT_NOT_REACHED();
return kWKPluginLoadPolicyBlocked;
}
inline WKPluginLoadClientPolicy toWKPluginLoadClientPolicy(WebCore::PluginLoadClientPolicy PluginLoadClientPolicy)
{
switch (PluginLoadClientPolicy) {
case WebCore::PluginLoadClientPolicyUndefined:
return kWKPluginLoadClientPolicyUndefined;
case WebCore::PluginLoadClientPolicyBlock:
return kWKPluginLoadClientPolicyBlock;
case WebCore::PluginLoadClientPolicyAsk:
return kWKPluginLoadClientPolicyAsk;
case WebCore::PluginLoadClientPolicyAllow:
return kWKPluginLoadClientPolicyAllow;
case WebCore::PluginLoadClientPolicyAllowAlways:
return kWKPluginLoadClientPolicyAllowAlways;
}
ASSERT_NOT_REACHED();
return kWKPluginLoadClientPolicyBlock;
}
inline PluginModuleLoadPolicy toPluginModuleLoadPolicy(WKPluginLoadPolicy pluginLoadPolicy)
{
switch (pluginLoadPolicy) {
case kWKPluginLoadPolicyLoadNormally:
return PluginModuleLoadNormally;
case kWKPluginLoadPolicyBlocked:
return PluginModuleBlockedForSecurity;
case kWKPluginLoadPolicyBlockedForCompatibility:
return PluginModuleBlockedForCompatibility;
case kWKPluginLoadPolicyLoadUnsandboxed:
return PluginModuleLoadUnsandboxed;
}
ASSERT_NOT_REACHED();
return PluginModuleBlockedForSecurity;
}
inline WebCore::PluginLoadClientPolicy toPluginLoadClientPolicy(WKPluginLoadClientPolicy pluginLoadClientPolicy)
{
switch (pluginLoadClientPolicy) {
case kWKPluginLoadClientPolicyUndefined:
return WebCore::PluginLoadClientPolicyUndefined;
case kWKPluginLoadClientPolicyBlock:
return WebCore::PluginLoadClientPolicyBlock;
case kWKPluginLoadClientPolicyAsk:
return WebCore::PluginLoadClientPolicyAsk;
case kWKPluginLoadClientPolicyAllow:
return WebCore::PluginLoadClientPolicyAllow;
case kWKPluginLoadClientPolicyAllowAlways:
return WebCore::PluginLoadClientPolicyAllowAlways;
}
ASSERT_NOT_REACHED();
return WebCore::PluginLoadClientPolicyBlock;
}
inline WebCore::WebGLLoadPolicy toWebGLLoadPolicy(WKWebGLLoadPolicy webGLLoadPolicy)
{
switch (webGLLoadPolicy) {
case kWKWebGLLoadPolicyLoadNormally:
return WebCore::WebGLAllowCreation;
case kWKWebGLLoadPolicyBlocked:
return WebCore::WebGLBlockCreation;
case kWKWebGLLoadPolicyPending:
return WebCore::WebGLPendingCreation;
}
ASSERT_NOT_REACHED();
return WebCore::WebGLAllowCreation;
}
inline WKWebGLLoadPolicy toAPI(WebCore::WebGLLoadPolicy webGLLoadPolicy)
{
switch (webGLLoadPolicy) {
case WebCore::WebGLAllowCreation:
return kWKWebGLLoadPolicyLoadNormally;
case WebCore::WebGLBlockCreation:
return kWKWebGLLoadPolicyBlocked;
case WebCore::WebGLPendingCreation:
return kWKWebGLLoadPolicyPending;
}
ASSERT_NOT_REACHED();
return kWKWebGLLoadPolicyLoadNormally;
}
inline ProxyingRefPtr<WebGrammarDetail> toAPI(const WebCore::GrammarDetail& grammarDetail)
{
return ProxyingRefPtr<WebGrammarDetail>(WebGrammarDetail::create(grammarDetail));
}
} // namespace WebKit
#if defined(BUILDING_GTK__)
#include "WKAPICastGtk.h"
#endif
#if USE(SOUP)
#include "WKAPICastSoup.h"
#endif
#if defined(BUILDING_EFL__)
#include "WKAPICastEfl.h"
#endif
#endif // WKAPICast_h
|