Home
last modified time | relevance | path

Searched refs:bundleRef (Results 1 – 2 of 2) sorted by relevance

/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
DWKBundle.cpp41 void WKBundleSetClient(WKBundleRef bundleRef, WKBundleClient * wkClient) in WKBundleSetClient() argument
45 toImpl(bundleRef)->initializeClient(wkClient); in WKBundleSetClient()
48 void WKBundlePostMessage(WKBundleRef bundleRef, WKStringRef messageNameRef, WKTypeRef messageBodyRe… in WKBundlePostMessage() argument
50 toImpl(bundleRef)->postMessage(toImpl(messageNameRef)->string(), toImpl(messageBodyRef)); in WKBundlePostMessage()
53 void WKBundlePostSynchronousMessage(WKBundleRef bundleRef, WKStringRef messageNameRef, WKTypeRef me… in WKBundlePostSynchronousMessage() argument
56 …toImpl(bundleRef)->postSynchronousMessage(toImpl(messageNameRef)->string(), toImpl(messageBodyRef)… in WKBundlePostSynchronousMessage()
61 void WKBundleSetShouldTrackVisitedLinks(WKBundleRef bundleRef, bool shouldTrackVisitedLinks) in WKBundleSetShouldTrackVisitedLinks() argument
63 toImpl(bundleRef)->setShouldTrackVisitedLinks(shouldTrackVisitedLinks); in WKBundleSetShouldTrackVisitedLinks()
66 void WKBundleRemoveAllVisitedLinks(WKBundleRef bundleRef) in WKBundleRemoveAllVisitedLinks() argument
68 toImpl(bundleRef)->removeAllVisitedLinks(); in WKBundleRemoveAllVisitedLinks()
[all …]
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/win/
DWKBundlePrivateWin.cpp35 void WKBundleSetHostAllowsAnyHTTPSCertificate(WKBundleRef bundleRef, WKStringRef host) in WKBundleSetHostAllowsAnyHTTPSCertificate() argument
37 toImpl(bundleRef)->setHostAllowsAnyHTTPSCertificate(toWTFString(host)); in WKBundleSetHostAllowsAnyHTTPSCertificate()
40 void WKBundleSetClientCertificate(WKBundleRef bundleRef, WKStringRef host, WKStringRef certificateS… in WKBundleSetClientCertificate() argument
42 …toImpl(bundleRef)->setClientCertificate(toWTFString(host), toWTFString(certificateSystemStoreName)… in WKBundleSetClientCertificate()