Searched refs:clientInfo (Results 1 - 25 of 128) sorted by relevance

123456

/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/C/
H A DWKNotificationProvider.h35 typedef void (*WKNotificationProviderShowCallback)(WKPageRef page, WKNotificationRef notification, const void* clientInfo);
36 typedef void (*WKNotificationProviderCancelCallback)(WKNotificationRef notification, const void* clientInfo);
37 typedef void (*WKNotificationProviderDidDestroyNotificationCallback)(WKNotificationRef notification, const void* clientInfo);
38 typedef void (*WKNotificationProviderAddNotificationManagerCallback)(WKNotificationManagerRef manager, const void* clientInfo);
39 typedef void (*WKNotificationProviderRemoveNotificationManagerCallback)(WKNotificationManagerRef manager, const void* clientInfo);
40 typedef WKDictionaryRef (*WKNotificationProviderNotificationPermissionsCallback)(const void* clientInfo);
41 typedef void (*WKNotificationProviderClearNotificationsCallback)(WKArrayRef notificationIDs, const void* clientInfo);
45 const void* clientInfo; member in struct:WKNotificationProvider
H A DWKTextChecker.h36 typedef bool (*WKTextCheckerContinousSpellCheckingAllowed)(const void *clientInfo);
37 typedef bool (*WKTextCheckerContinousSpellCheckingEnabled)(const void *clientInfo);
38 typedef void (*WKTextCheckerSetContinousSpellCheckingEnabled)(bool enabled, const void *clientInfo);
39 typedef bool (*WKTextCheckerGrammarCheckingEnabled)(const void *clientInfo);
40 typedef void (*WKTextCheckerSetGrammarCheckingEnabled)(bool enabled, const void *clientInfo);
41 typedef uint64_t (*WKTextCheckerUniqueSpellDocumentTag)(WKPageRef page, const void *clientInfo);
42 typedef void (*WKTextCheckerCloseSpellDocumentWithTag)(uint64_t tag, const void *clientInfo);
43 typedef void (*WKTextCheckerCheckSpellingOfString)(uint64_t tag, WKStringRef text, int32_t* misspellingLocation, int32_t* misspellingLength, const void *clientInfo);
44 typedef void (*WKTextCheckerCheckGrammarOfString)(uint64_t tag, WKStringRef text, WKArrayRef* grammarDetails, int32_t* badGrammarLocation, int32_t* badGrammarLength, const void *clientInfo);
45 typedef bool (*WKTextCheckerSpellingUIIsShowing)(const void *clientInfo);
55 const void * clientInfo; member in struct:WKTextCheckerClient
[all...]
H A DWKNetworkInfoManager.h36 typedef void (*WKNetworkInfoProviderStartUpdatingCallback)(WKNetworkInfoManagerRef networkInfoManager, const void* clientInfo);
37 typedef void (*WKNetworkInfoProviderStopUpdatingCallback)(WKNetworkInfoManagerRef networkInfoManager, const void* clientInfo);
38 typedef double (*WKNetworkInfoProviderGetBandwidthCallback)(WKNetworkInfoManagerRef networkInfoManager, const void* clientInfo);
39 typedef bool (*WKNetworkInfoProviderIsMeteredCallback)(WKNetworkInfoManagerRef networkInfoManager, const void* clientInfo);
43 const void * clientInfo; member in struct:WKNetworkInfoProvider
H A DWKVibration.h36 typedef void (*WKVibrationProviderVibrateCallback)(WKVibrationRef vibrationRef, uint32_t vibrationTime, const void* clientInfo);
37 typedef void (*WKVibrationProviderCancelVibrationCallback)(WKVibrationRef vibrationRef, const void* clientInfo);
41 const void * clientInfo; member in struct:WKVibrationProvider
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/gtk/
H A DWebKitFullscreenClient.cpp28 static bool willEnterFullScreen(const void* clientInfo) argument
30 return webkitWebViewEnterFullScreen(WEBKIT_WEB_VIEW(clientInfo));
33 static bool willExitFullScreen(const void* clientInfo) argument
35 return webkitWebViewLeaveFullScreen(WEBKIT_WEB_VIEW(clientInfo));
42 webView, // clientInfo
H A DWebKitLoaderClient.cpp34 static void didStartProvisionalLoadForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void* clientInfo) argument
39 webkitWebViewLoadChanged(WEBKIT_WEB_VIEW(clientInfo), WEBKIT_LOAD_STARTED);
42 static void didReceiveServerRedirectForProvisionalLoadForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void* clientInfo) argument
47 webkitWebViewLoadChanged(WEBKIT_WEB_VIEW(clientInfo), WEBKIT_LOAD_REDIRECTED);
50 static void didFailProvisionalLoadWithErrorForFrame(WKPageRef page, WKFrameRef frame, WKErrorRef error, WKTypeRef userData, const void* clientInfo) argument
60 webkitWebViewLoadFailedWithTLSErrors(WEBKIT_WEB_VIEW(clientInfo), resourceError.failingURL().utf8().data(), webError.get(),
63 webkitWebViewLoadFailed(WEBKIT_WEB_VIEW(clientInfo), WEBKIT_LOAD_STARTED, resourceError.failingURL().utf8().data(), webError.get());
66 static void didCommitLoadForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void* clientInfo) argument
71 webkitWebViewLoadChanged(WEBKIT_WEB_VIEW(clientInfo), WEBKIT_LOAD_COMMITTED);
74 static void didFinishLoadForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void* clientInfo) argument
82 didFailLoadWithErrorForFrame(WKPageRef page, WKFrameRef frame, WKErrorRef error, WKTypeRef, const void* clientInfo) argument
95 didSameDocumentNavigationForFrame(WKPageRef page, WKFrameRef frame, WKSameDocumentNavigationType, WKTypeRef, const void* clientInfo) argument
103 didReceiveTitleForFrame(WKPageRef page, WKStringRef titleRef, WKFrameRef frameRef, WKTypeRef, const void* clientInfo) argument
111 didDisplayInsecureContentForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void *clientInfo) argument
116 didRunInsecureContentForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void *clientInfo) argument
121 didChangeProgress(WKPageRef page, const void* clientInfo) argument
126 didChangeBackForwardList(WKPageRef page, WKBackForwardListItemRef addedItem, WKArrayRef removedItems, const void* clientInfo) argument
131 didReceiveAuthenticationChallengeInFrame(WKPageRef page, WKFrameRef frame, WKAuthenticationChallengeRef authenticationChallenge, const void *clientInfo) argument
136 processDidCrash(WKPageRef page, const void* clientInfo) argument
[all...]
H A DWebKitUIClient.cpp35 static WKPageRef createNewPage(WKPageRef page, WKURLRequestRef, WKDictionaryRef wkWindowFeatures, WKEventModifiers, WKEventMouseButton, const void* clientInfo) argument
37 return static_cast<WKPageRef>(toAPI(webkitWebViewCreateNewPage(WEBKIT_WEB_VIEW(clientInfo), toImpl(wkWindowFeatures))));
40 static void showPage(WKPageRef page, const void* clientInfo) argument
42 webkitWebViewReadyToShowPage(WEBKIT_WEB_VIEW(clientInfo));
45 static void closePage(WKPageRef page, const void* clientInfo) argument
47 webkitWebViewClosePage(WEBKIT_WEB_VIEW(clientInfo));
50 static void runJavaScriptAlert(WKPageRef page, WKStringRef message, WKFrameRef, const void* clientInfo) argument
52 webkitWebViewRunJavaScriptAlert(WEBKIT_WEB_VIEW(clientInfo), toImpl(message)->string().utf8());
55 static bool runJavaScriptConfirm(WKPageRef page, WKStringRef message, WKFrameRef, const void* clientInfo) argument
57 return webkitWebViewRunJavaScriptConfirm(WEBKIT_WEB_VIEW(clientInfo), toImp
60 runJavaScriptPrompt(WKPageRef page, WKStringRef message, WKStringRef defaultValue, WKFrameRef, const void* clientInfo) argument
67 toolbarsAreVisible(WKPageRef page, const void* clientInfo) argument
73 setToolbarsAreVisible(WKPageRef page, bool toolbarsVisible, const void* clientInfo) argument
79 menuBarIsVisible(WKPageRef page, const void* clientInfo) argument
85 setMenuBarIsVisible(WKPageRef page, bool menuBarVisible, const void* clientInfo) argument
91 statusBarIsVisible(WKPageRef page, const void* clientInfo) argument
97 setStatusBarIsVisible(WKPageRef page, bool statusBarVisible, const void* clientInfo) argument
103 isResizable(WKPageRef page, const void* clientInfo) argument
109 setIsResizable(WKPageRef page, bool resizable, const void* clientInfo) argument
115 getWindowFrame(WKPageRef page, const void* clientInfo) argument
126 setWindowFrame(WKPageRef page, WKRect frame, const void* clientInfo) argument
134 mouseDidMoveOverElement(WKPageRef page, WKHitTestResultRef hitTestResult, WKEventModifiers modifiers, WKTypeRef userData, const void* clientInfo) argument
144 runOpenPanel(WKPageRef page, WKFrameRef frame, WKOpenPanelParametersRef parameters, WKOpenPanelResultListenerRef listener, const void *clientInfo) argument
150 decidePolicyForGeolocationPermissionRequest(WKPageRef, WKFrameRef, WKSecurityOriginRef, WKGeolocationPermissionRequestRef request, const void* clientInfo) argument
156 runModal(WKPageRef page, const void* clientInfo) argument
[all...]
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/efl/
H A DViewClientEfl.h49 static EwkView* toEwkView(const void* clientInfo);
50 static void viewNeedsDisplay(WKViewRef, WKRect area, const void* clientInfo);
51 static void didChangeContentsSize(WKViewRef, WKSize, const void* clientInfo);
52 static void webProcessCrashed(WKViewRef, WKURLRef, const void* clientInfo);
53 static void webProcessDidRelaunch(WKViewRef, const void* clientInfo);
54 static void didChangeContentsPosition(WKViewRef, WKPoint, const void* clientInfo);
55 static void didRenderFrame(WKViewRef, WKSize, WKRect, const void* clientInfo);
56 static void didCompletePageTransition(WKViewRef, const void* clientInfo);
57 static void didChangeViewportAttributes(WKViewRef, WKViewportAttributesRef, const void* clientInfo);
58 static void didChangeTooltip(WKViewRef, WKStringRef, const void* clientInfo);
[all...]
H A DContextMenuClientEfl.cpp35 static inline ContextMenuClientEfl* toContextClientEfl(const void* clientInfo) argument
37 return static_cast<ContextMenuClientEfl*>(const_cast<void*>(clientInfo));
40 static void customContextMenuItemSelected(WKPageRef, WKContextMenuItemRef contextMenuItem, const void* clientInfo) argument
42 toContextClientEfl(clientInfo)->view()->customContextMenuItemSelected(contextMenuItem);
45 static void showContextMenu(WKPageRef, WKPoint menuLocation, WKArrayRef menuItems, const void* clientInfo) argument
47 toContextClientEfl(clientInfo)->view()->showContextMenu(menuLocation, menuItems);
50 static void hideContextMenu(WKPageRef, const void* clientInfo) argument
52 toContextClientEfl(clientInfo)->view()->hideContextMenu();
64 contextMenuClient.clientInfo = this;
H A DPageLoadClientEfl.h49 static void didReceiveTitleForFrame(WKPageRef, WKStringRef title, WKFrameRef, WKTypeRef, const void* clientInfo);
50 static void didChangeProgress(WKPageRef, const void* clientInfo);
51 static void didFinishLoadForFrame(WKPageRef, WKFrameRef, WKTypeRef userData, const void* clientInfo);
52 static void didFailLoadWithErrorForFrame(WKPageRef, WKFrameRef, WKErrorRef, WKTypeRef userData, const void* clientInfo);
53 static void didStartProvisionalLoadForFrame(WKPageRef, WKFrameRef, WKTypeRef userData, const void* clientInfo);
54 static void didReceiveServerRedirectForProvisionalLoadForFrame(WKPageRef, WKFrameRef, WKTypeRef userData, const void* clientInfo);
55 static void didFailProvisionalLoadWithErrorForFrame(WKPageRef, WKFrameRef, WKErrorRef, WKTypeRef userData, const void* clientInfo);
56 static void didCommitLoadForFrame(WKPageRef, WKFrameRef, WKTypeRef userData, const void* clientInfo);
57 static void didChangeBackForwardList(WKPageRef, WKBackForwardListItemRef addedItem, WKArrayRef removedItems, const void* clientInfo);
58 static void didSameDocumentNavigationForFrame(WKPageRef, WKFrameRef, WKSameDocumentNavigationType, WKTypeRef, const void* clientInfo);
[all...]
H A DFindClientEfl.cpp37 static inline FindClientEfl* toFindClientEfl(const void* clientInfo) argument
39 return static_cast<FindClientEfl*>(const_cast<void*>(clientInfo));
42 void FindClientEfl::didFindString(WKPageRef, WKStringRef, unsigned matchCount, const void* clientInfo) argument
44 FindClientEfl* findClient = toFindClientEfl(clientInfo);
48 void FindClientEfl::didFailToFindString(WKPageRef, WKStringRef, const void* clientInfo) argument
50 FindClientEfl* findClient = toFindClientEfl(clientInfo);
64 findClient.clientInfo = this;
H A DPageUIClientEfl.cpp44 static inline PageUIClientEfl* toPageUIClientEfl(const void* clientInfo) argument
46 return static_cast<PageUIClientEfl*>(const_cast<void*>(clientInfo));
58 uiClient.clientInfo = this;
93 uiPopupMenuClient.clientInfo = this;
100 void PageUIClientEfl::close(WKPageRef, const void* clientInfo) argument
102 toPageUIClientEfl(clientInfo)->m_view->close();
105 void PageUIClientEfl::takeFocus(WKPageRef, WKFocusDirection, const void* clientInfo) argument
108 evas_object_focus_set(toPageUIClientEfl(clientInfo)->m_view->evasObject(), false);
111 void PageUIClientEfl::focus(WKPageRef, const void* clientInfo) argument
113 evas_object_focus_set(toPageUIClientEfl(clientInfo)
116 unfocus(WKPageRef, const void* clientInfo) argument
121 runJavaScriptAlert(WKPageRef, WKStringRef alertText, WKFrameRef, const void* clientInfo) argument
126 runJavaScriptConfirm(WKPageRef, WKStringRef message, WKFrameRef, const void* clientInfo) argument
131 runJavaScriptPrompt(WKPageRef, WKStringRef message, WKStringRef defaultValue, WKFrameRef, const void* clientInfo) argument
137 toolbarsAreVisible(WKPageRef, const void* clientInfo) argument
144 setToolbarsAreVisible(WKPageRef, bool toolbarVisible, const void* clientInfo) argument
151 menuBarIsVisible(WKPageRef, const void* clientInfo) argument
158 setMenuBarIsVisible(WKPageRef, bool menuBarVisible, const void* clientInfo) argument
165 statusBarIsVisible(WKPageRef, const void* clientInfo) argument
172 setStatusBarIsVisible(WKPageRef, bool statusBarVisible, const void* clientInfo) argument
179 isResizable(WKPageRef, const void* clientInfo) argument
186 setIsResizable(WKPageRef, bool resizable, const void* clientInfo) argument
193 getWindowFrame(WKPageRef, const void* clientInfo) argument
198 setWindowFrame(WKPageRef, WKRect frame, const void* clientInfo) argument
203 runBeforeUnloadConfirmPanel(WKPageRef, WKStringRef message, WKFrameRef, const void* clientInfo) argument
209 exceededDatabaseQuota(WKPageRef, WKFrameRef, WKSecurityOriginRef, WKStringRef databaseName, WKStringRef displayName, unsigned long long currentQuota, unsigned long long currentOriginUsage, unsigned long long currentDatabaseUsage, unsigned long long expectedUsage, const void* clientInfo) argument
216 runOpenPanel(WKPageRef, WKFrameRef, WKOpenPanelParametersRef parameters, WKOpenPanelResultListenerRef listener, const void* clientInfo) argument
223 createNewPage(WKPageRef, WKURLRequestRef wkRequest, WKDictionaryRef wkWindowFeatures, WKEventModifiers, WKEventMouseButton, const void* clientInfo) argument
230 showColorPicker(WKPageRef, WKStringRef initialColor, WKColorPickerResultListenerRef listener, const void* clientInfo) argument
237 hideColorPicker(WKPageRef, const void* clientInfo) argument
244 showPopupMenu(WKPageRef, WKPopupMenuListenerRef menuListenerRef, WKRect rect, WKPopupItemTextDirection textDirection, double pageScaleFactor, WKArrayRef itemsRef, int32_t selectedIndex, const void* clientInfo) argument
249 hidePopupMenu(WKPageRef, const void* clientInfo) argument
[all...]
H A DNetworkInfoProvider.cpp36 static inline NetworkInfoProvider* toNetworkInfoProvider(const void* clientInfo) argument
38 return static_cast<NetworkInfoProvider*>(const_cast<void*>(clientInfo));
41 static void startUpdatingCallback(WKNetworkInfoManagerRef, const void* clientInfo) argument
43 toNetworkInfoProvider(clientInfo)->startUpdating();
46 static void stopUpdatingCallback(WKNetworkInfoManagerRef, const void* clientInfo) argument
48 toNetworkInfoProvider(clientInfo)->stopUpdating();
51 static double getBandwidthCallback(WKNetworkInfoManagerRef, const void* clientInfo) argument
53 return toNetworkInfoProvider(clientInfo)->bandwidth();
56 static bool isMeteredCallback(WKNetworkInfoManagerRef, const void* clientInfo) argument
58 return toNetworkInfoProvider(clientInfo)
[all...]
H A DPageLoadClientEfl.cpp43 static inline PageLoadClientEfl* toPageLoadClientEfl(const void* clientInfo) argument
45 return static_cast<PageLoadClientEfl*>(const_cast<void*>(clientInfo));
48 void PageLoadClientEfl::didReceiveTitleForFrame(WKPageRef, WKStringRef title, WKFrameRef frame, WKTypeRef, const void* clientInfo) argument
53 EwkView* view = toPageLoadClientEfl(clientInfo)->view();
57 void PageLoadClientEfl::didChangeProgress(WKPageRef page, const void* clientInfo) argument
59 EwkView* view = toPageLoadClientEfl(clientInfo)->view();
64 void PageLoadClientEfl::didFinishLoadForFrame(WKPageRef, WKFrameRef frame, WKTypeRef /*userData*/, const void* clientInfo) argument
69 EwkView* view = toPageLoadClientEfl(clientInfo)->view();
73 void PageLoadClientEfl::didFailLoadWithErrorForFrame(WKPageRef, WKFrameRef frame, WKErrorRef error, WKTypeRef, const void* clientInfo) argument
78 EwkView* view = toPageLoadClientEfl(clientInfo)
84 didStartProvisionalLoadForFrame(WKPageRef, WKFrameRef frame, WKTypeRef , const void* clientInfo) argument
94 didReceiveServerRedirectForProvisionalLoadForFrame(WKPageRef, WKFrameRef frame, WKTypeRef , const void* clientInfo) argument
104 didFailProvisionalLoadWithErrorForFrame(WKPageRef, WKFrameRef frame, WKErrorRef error, WKTypeRef, const void* clientInfo) argument
114 didCommitLoadForFrame(WKPageRef, WKFrameRef frame, WKTypeRef, const void* clientInfo) argument
130 didChangeBackForwardList(WKPageRef, WKBackForwardListItemRef addedItem, WKArrayRef removedItems, const void* clientInfo) argument
142 didSameDocumentNavigationForFrame(WKPageRef, WKFrameRef frame, WKSameDocumentNavigationType, WKTypeRef, const void* clientInfo) argument
151 didReceiveAuthenticationChallengeInFrame(WKPageRef, WKFrameRef, WKAuthenticationChallengeRef authenticationChallenge, const void* clientInfo) argument
[all...]
H A DViewClientEfl.cpp41 EwkView* ViewClientEfl::toEwkView(const void* clientInfo) argument
43 return static_cast<ViewClientEfl*>(const_cast<void*>(clientInfo))->m_view;
46 void ViewClientEfl::viewNeedsDisplay(WKViewRef, WKRect, const void* clientInfo) argument
48 toEwkView(clientInfo)->scheduleUpdateDisplay();
51 void ViewClientEfl::didChangeContentsSize(WKViewRef, WKSize size, const void* clientInfo) argument
53 EwkView* ewkView = toEwkView(clientInfo);
66 void ViewClientEfl::webProcessCrashed(WKViewRef, WKURLRef url, const void* clientInfo) argument
68 EwkView* ewkView = toEwkView(clientInfo);
91 void ViewClientEfl::webProcessDidRelaunch(WKViewRef viewRef, const void* clientInfo) argument
93 if (const char* themePath = toEwkView(clientInfo)
97 didChangeContentsPosition(WKViewRef, WKPoint position, const void* clientInfo) argument
110 didRenderFrame(WKViewRef, WKSize contentsSize, WKRect coveredRect, const void* clientInfo) argument
123 didCompletePageTransition(WKViewRef, const void* clientInfo) argument
136 didChangeViewportAttributes(WKViewRef, WKViewportAttributesRef attributes, const void* clientInfo) argument
149 didChangeTooltip(WKViewRef, WKStringRef tooltip, const void* clientInfo) argument
[all...]
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/gtk/
H A DWebFullScreenClientGtk.cpp39 return m_client.willEnterFullScreen(m_client.clientInfo);
47 return m_client.willExitFullScreen(m_client.clientInfo);
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/C/gtk/
H A DWKFullScreenClientGtk.h35 typedef bool (*WKFullScreenClientGtkWillEnterFullScreenCallback)(const void* clientInfo);
36 typedef bool (*WKFullScreenClientGtkWillExitFullScreenCallback)(const void* clientInfo);
40 const void* clientInfo; member in struct:WKFullScreenClientGtk
H A DWKInspectorClientGtk.h35 typedef bool (*WKInspectorClientGtkInspectorCallback)(WKInspectorRef inspector, const void* clientInfo);
36 typedef void (*WKInspectorClientGtkInspectorDidCloseCallback)(WKInspectorRef inspector, const void* clientInfo);
37 typedef void (*WKInspectorClientGtkInspectedURLChangedCallback)(WKInspectorRef inspector, WKStringRef url, const void* clientInfo);
38 typedef void (*WKInspectorClientGtkDidChangeAttachedHeightCallback)(WKInspectorRef inspector, unsigned height, const void* clientInfo);
42 const void* clientInfo; member in struct:WKInspectorClientGtk
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/qt/
H A DQtDownloadManager.h42 static void didReceiveResponse(WKContextRef, WKDownloadRef, WKURLResponseRef, const void* clientInfo);
43 static void didCreateDestination(WKContextRef, WKDownloadRef, WKStringRef path, const void* clientInfo);
44 static void didFinishDownload(WKContextRef, WKDownloadRef, const void* clientInfo);
45 static void didFailDownload(WKContextRef, WKDownloadRef, WKErrorRef, const void* clientInfo);
46 static void didReceiveDataForDownload(WKContextRef, WKDownloadRef, uint64_t length, const void* clientInfo);
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/InjectedBundle/API/c/
H A DWKBundlePage.h83 typedef void (*WKBundlePageDidStartProvisionalLoadForFrameCallback)(WKBundlePageRef page, WKBundleFrameRef frame, WKTypeRef* userData, const void *clientInfo);
84 typedef void (*WKBundlePageDidReceiveServerRedirectForProvisionalLoadForFrameCallback)(WKBundlePageRef page, WKBundleFrameRef frame, WKTypeRef* userData, const void *clientInfo);
85 typedef void (*WKBundlePageDidFailProvisionalLoadWithErrorForFrameCallback)(WKBundlePageRef page, WKBundleFrameRef frame, WKErrorRef error, WKTypeRef* userData, const void *clientInfo);
86 typedef void (*WKBundlePageDidCommitLoadForFrameCallback)(WKBundlePageRef page, WKBundleFrameRef frame, WKTypeRef* userData, const void *clientInfo);
87 typedef void (*WKBundlePageDidDocumentFinishLoadForFrameCallback)(WKBundlePageRef page, WKBundleFrameRef frame, WKTypeRef* userData, const void *clientInfo);
88 typedef void (*WKBundlePageDidFinishLoadForFrameCallback)(WKBundlePageRef page, WKBundleFrameRef frame, WKTypeRef* userData, const void *clientInfo);
89 typedef void (*WKBundlePageDidFinishDocumentLoadForFrameCallback)(WKBundlePageRef page, WKBundleFrameRef frame, WKTypeRef* userData, const void *clientInfo);
90 typedef void (*WKBundlePageDidFinishProgressCallback)(WKBundlePageRef page, const void *clientInfo);
91 typedef void (*WKBundlePageDidFailLoadWithErrorForFrameCallback)(WKBundlePageRef page, WKBundleFrameRef frame, WKErrorRef error, WKTypeRef* userData, const void *clientInfo);
92 typedef void (*WKBundlePageDidSameDocumentNavigationForFrameCallback)(WKBundlePageRef page, WKBundleFrameRef frame, WKSameDocumentNavigationType type, WKTypeRef* userData, const void *clientInfo);
119 const void * clientInfo; member in struct:WKBundlePageLoaderClient
187 const void * clientInfo; member in struct:WKBundlePagePolicyClient
209 const void * clientInfo; member in struct:WKBundlePageResourceLoadClient
266 const void * clientInfo; member in struct:WKBundlePageUIClient
311 const void * clientInfo; member in struct:WKBundlePageEditorClient
346 const void * clientInfo; member in struct:WKBundlePageFormClient
373 const void * clientInfo; member in struct:WKBundlePageContextMenuClient
390 const void * clientInfo; member in struct:WKBundlePageFullScreenClient
411 const void * clientInfo; member in struct:WKBundlePageDiagnosticLoggingClient
[all...]
H A DWKBundlePageOverlay.h44 typedef void (*WKBundlePageOverlayWillMoveToPageCallback)(WKBundlePageOverlayRef pageOverlay, WKBundlePageRef page, const void* clientInfo);
45 typedef void (*WKBundlePageOverlayDidMoveToPageCallback)(WKBundlePageOverlayRef pageOverlay, WKBundlePageRef page, const void* clientInfo);
46 typedef void (*WKBundlePageOverlayDrawRectCallback)(WKBundlePageOverlayRef pageOverlay, void* graphicsContext, WKRect dirtyRect, const void* clientInfo);
47 typedef bool (*WKBundlePageOverlayMouseDownCallback)(WKBundlePageOverlayRef pageOverlay, WKPoint position, WKEventMouseButton mouseButton, const void* clientInfo);
48 typedef bool (*WKBundlePageOverlayMouseUpCallback)(WKBundlePageOverlayRef pageOverlay, WKPoint position, WKEventMouseButton mouseButton, const void* clientInfo);
49 typedef bool (*WKBundlePageOverlayMouseMovedCallback)(WKBundlePageOverlayRef pageOverlay, WKPoint position, const void* clientInfo);
50 typedef bool (*WKBundlePageOverlayMouseDraggedCallback)(WKBundlePageOverlayRef pageOverlay, WKPoint position, WKEventMouseButton mouseButton, const void* clientInfo);
54 const void * clientInfo; member in struct:WKBundlePageOverlayClient
67 typedef WKTypeRef (*WKAccessibilityAttributeValueCallback)(WKBundlePageOverlayRef pageOverlay, WKStringRef attribute, WKTypeRef parameter, const void* clientInfo);
68 typedef WKArrayRef (*WKAccessibilityAttributeNamesCallback)(WKBundlePageOverlayRef pageOverlay, bool parameterizedNames, const void* clientInfo);
72 const void * clientInfo; member in struct:WKBundlePageOverlayAccessibilityClient
[all...]
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/
H A DWebContextClient.cpp38 m_client.plugInAutoStartOriginHashesChanged(toAPI(context), m_client.clientInfo);
46 m_client.networkProcessDidCrash(toAPI(context), m_client.clientInfo);
54 m_client.plugInInformationBecameAvailable(toAPI(context), toAPI(plugInInfo), m_client.clientInfo);
H A DWebCookieManagerProxyClient.cpp38 m_client.cookiesDidChange(toAPI(cookieManager), m_client.clientInfo);
H A DWebNetworkInfoProvider.cpp42 m_client.startUpdating(toAPI(networkInfoManager), m_client.clientInfo);
50 m_client.stopUpdating(toAPI(networkInfoManager), m_client.clientInfo);
59 return m_client.bandwidth(toAPI(networkInfoManager), m_client.clientInfo);
67 return m_client.isMetered(toAPI(networkInfoManager), m_client.clientInfo);
/macosx-10.9.5/WebKit2-7537.78.2/Shared/Downloads/cfnet/
H A DDownloadCFNet.cpp48 static void didStartCallback(CFURLDownloadRef download, const void* clientInfo);
49 static CFURLRequestRef willSendRequestCallback(CFURLDownloadRef download, CFURLRequestRef request, CFURLResponseRef redirectionResponse, const void* clientInfo);
50 static void didReceiveAuthenticationChallengeCallback(CFURLDownloadRef download, CFURLAuthChallengeRef challenge, const void* clientInfo);
51 static void didReceiveResponseCallback(CFURLDownloadRef download, CFURLResponseRef response, const void* clientInfo);
52 static void willResumeWithResponseCallback(CFURLDownloadRef download, CFURLResponseRef response, UInt64 startingByte, const void* clientInfo);
53 static void didReceiveDataCallback(CFURLDownloadRef download, CFIndex length, const void* clientInfo);
54 static Boolean shouldDecodeDataOfMIMETypeCallback(CFURLDownloadRef download, CFStringRef encodingType, const void* clientInfo);
55 static void decideDestinationWithSuggestedObjectNameCallback(CFURLDownloadRef download, CFStringRef objectName, const void* clientInfo);
56 static void didCreateDestinationCallback(CFURLDownloadRef download, CFURLRef path, const void* clientInfo);
57 static void didFinishCallback(CFURLDownloadRef download, const void* clientInfo);
177 downloadFromClientInfo(const void* clientInfo) argument
182 didStartCallback(CFURLDownloadRef, const void* clientInfo) argument
187 willSendRequestCallback(CFURLDownloadRef, CFURLRequestRef request, CFURLResponseRef redirectionResponse, const void* clientInfo) argument
194 didReceiveAuthenticationChallengeCallback(CFURLDownloadRef, CFURLAuthChallengeRef challenge, const void* clientInfo) argument
200 didReceiveResponseCallback(CFURLDownloadRef, CFURLResponseRef response, const void* clientInfo) argument
205 willResumeWithResponseCallback(CFURLDownloadRef, CFURLResponseRef response, UInt64 startingByte, const void* clientInfo) argument
211 didReceiveDataCallback(CFURLDownloadRef, CFIndex length, const void* clientInfo) argument
216 shouldDecodeDataOfMIMETypeCallback(CFURLDownloadRef, CFStringRef encodingType, const void* clientInfo) argument
221 decideDestinationWithSuggestedObjectNameCallback(CFURLDownloadRef, CFStringRef objectName, const void* clientInfo) argument
228 didCreateDestinationCallback(CFURLDownloadRef, CFURLRef, const void* clientInfo) argument
237 didFinishCallback(CFURLDownloadRef, const void* clientInfo) argument
242 didFailCallback(CFURLDownloadRef, CFErrorRef error, const void* clientInfo) argument
[all...]

Completed in 159 milliseconds

123456