• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/WebKit2-7600.1.25/UIProcess/API/C/

Lines Matching refs:pageGroupRef

46 WKStringRef WKPageGroupCopyIdentifier(WKPageGroupRef pageGroupRef)
48 return toCopiedAPI(toImpl(pageGroupRef)->identifier());
51 void WKPageGroupSetPreferences(WKPageGroupRef pageGroupRef, WKPreferencesRef preferencesRef)
53 toImpl(pageGroupRef)->setPreferences(toImpl(preferencesRef));
56 WKPreferencesRef WKPageGroupGetPreferences(WKPageGroupRef pageGroupRef)
58 return toAPI(&toImpl(pageGroupRef)->preferences());
61 void WKPageGroupAddUserStyleSheet(WKPageGroupRef pageGroupRef, WKStringRef sourceRef, WKURLRef baseURL, WKArrayRef whitelistedURLPatterns, WKArrayRef blacklistedURLPatterns, WKUserContentInjectedFrames injectedFrames)
63 toImpl(pageGroupRef)->addUserStyleSheet(toWTFString(sourceRef), toWTFString(baseURL), toImpl(whitelistedURLPatterns), toImpl(blacklistedURLPatterns), toUserContentInjectedFrames(injectedFrames), WebCore::UserStyleUserLevel);
66 void WKPageGroupRemoveAllUserStyleSheets(WKPageGroupRef pageGroupRef)
68 toImpl(pageGroupRef)->removeAllUserStyleSheets();
71 void WKPageGroupAddUserScript(WKPageGroupRef pageGroupRef, WKStringRef sourceRef, WKURLRef baseURL, WKArrayRef whitelistedURLPatterns, WKArrayRef blacklistedURLPatterns, WKUserContentInjectedFrames injectedFrames, _WKUserScriptInjectionTime injectionTime)
73 toImpl(pageGroupRef)->addUserScript(toWTFString(sourceRef), toWTFString(baseURL), toImpl(whitelistedURLPatterns), toImpl(blacklistedURLPatterns), toUserContentInjectedFrames(injectedFrames), toUserScriptInjectionTime(injectionTime));
76 void WKPageGroupRemoveAllUserScripts(WKPageGroupRef pageGroupRef)
78 toImpl(pageGroupRef)->removeAllUserScripts();