OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pageGroupRef
(Results
1 - 13
of
13
) sorted by null
/external/webkit/Source/WebKit2/UIProcess/API/C/
WKPageGroup.cpp
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());
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
WKBundle.cpp
91
void WKBundleAddUserScript(WKBundleRef bundleRef, WKBundlePageGroupRef
pageGroupRef
, WKBundleScriptWorldRef scriptWorldRef, WKStringRef sourceRef, WKURLRef urlRef, WKArrayRef whitelistRef, WKArrayRef blacklistRef, WKUserScriptInjectionTime injectionTimeRef, WKUserContentInjectedFrames injectedFramesRef)
93
toImpl(bundleRef)->addUserScript(toImpl(
pageGroupRef
), toImpl(scriptWorldRef), toWTFString(sourceRef), toWTFString(urlRef), toImpl(whitelistRef), toImpl(blacklistRef), toUserScriptInjectionTime(injectionTimeRef), toUserContentInjectedFrames(injectedFramesRef));
96
void WKBundleAddUserStyleSheet(WKBundleRef bundleRef, WKBundlePageGroupRef
pageGroupRef
, WKBundleScriptWorldRef scriptWorldRef, WKStringRef sourceRef, WKURLRef urlRef, WKArrayRef whitelistRef, WKArrayRef blacklistRef, WKUserContentInjectedFrames injectedFramesRef)
98
toImpl(bundleRef)->addUserStyleSheet(toImpl(
pageGroupRef
), toImpl(scriptWorldRef), toWTFString(sourceRef), toWTFString(urlRef), toImpl(whitelistRef), toImpl(blacklistRef), toUserContentInjectedFrames(injectedFramesRef));
101
void WKBundleRemoveUserScript(WKBundleRef bundleRef, WKBundlePageGroupRef
pageGroupRef
, WKBundleScriptWorldRef scriptWorldRef, WKURLRef urlRef)
103
toImpl(bundleRef)->removeUserScript(toImpl(
pageGroupRef
), toImpl(scriptWorldRef), toWTFString(urlRef));
106
void WKBundleRemoveUserStyleSheet(WKBundleRef bundleRef, WKBundlePageGroupRef
pageGroupRef
, WKBundleScriptWorldRef scriptWorldRef, WKURLRef urlRef)
108
toImpl(bundleRef)->removeUserStyleSheet(toImpl(
pageGroupRef
), toImpl(scriptWorldRef), toWTFString(urlRef));
111
void WKBundleRemoveUserScripts(WKBundleRef bundleRef, WKBundlePageGroupRef
pageGroupRef
, WKBundleScriptWorldRef scriptWorldRef)
113
toImpl(bundleRef)->removeUserScripts(toImpl(
pageGroupRef
), toImpl(scriptWorldRef))
[
all
...]
/external/webkit/Source/WebKit2/UIProcess/API/C/gtk/
WKView.cpp
40
WKViewRef WKViewCreate(WKContextRef contextRef, WKPageGroupRef
pageGroupRef
)
42
RefPtr<WebView> view = WebView::create(toImpl(contextRef), toImpl(
pageGroupRef
));
/external/webkit/Source/WebKit2/UIProcess/API/mac/
WKView.h
38
- (id)initWithFrame:(NSRect)frame contextRef:(WKContextRef)contextRef
pageGroupRef
:(WKPageGroupRef)
pageGroupRef
;
WKView.mm
183
return [self initWithFrame:frame contextRef:contextRef
pageGroupRef
:nil];
212
- (id)initWithFrame:(NSRect)frame contextRef:(WKContextRef)contextRef
pageGroupRef
:(WKPageGroupRef)
pageGroupRef
233
_data->_page = toImpl(contextRef)->createWebPage(_data->_pageClient.get(), toImpl(
pageGroupRef
));
[
all
...]
/external/webkit/Tools/WebKitTestRunner/mac/
PlatformWebViewMac.mm
30
PlatformWebView::PlatformWebView(WKContextRef contextRef, WKPageGroupRef
pageGroupRef
)
33
m_view = [[WKView alloc] initWithFrame:rect contextRef:contextRef
pageGroupRef
:
pageGroupRef
];
/external/webkit/Tools/WebKitTestRunner/win/
PlatformWebViewWin.cpp
51
PlatformWebView::PlatformWebView(WKContextRef contextRef, WKPageGroupRef
pageGroupRef
)
57
m_view = WKViewCreate(viewRect, contextRef,
pageGroupRef
, m_window);
/external/webkit/Source/WebKit2/UIProcess/API/C/win/
WKView.cpp
39
WKViewRef WKViewCreate(RECT rect, WKContextRef contextRef, WKPageGroupRef
pageGroupRef
, HWND parentWindow)
41
RefPtr<WebView> view = WebView::create(rect, toImpl(contextRef), toImpl(
pageGroupRef
), parentWindow);
/external/webkit/Tools/TestWebKitAPI/mac/
PlatformWebViewMac.mm
32
PlatformWebView::PlatformWebView(WKContextRef contextRef, WKPageGroupRef
pageGroupRef
)
35
m_view = [[WKView alloc] initWithFrame:rect contextRef:contextRef
pageGroupRef
:
pageGroupRef
];
/external/webkit/Source/WebKit2/UIProcess/API/qt/
qwkpreferences.cpp
30
QWKPreferences* QWKPreferencesPrivate::createPreferences(WKPageGroupRef
pageGroupRef
)
33
prefs->d->ref = WKPageGroupGetPreferences(
pageGroupRef
);
qwkpage.cpp
607
WKPageGroupRef
pageGroupRef
= WKPageGetPageGroup(pageRef());
608
d->preferences = QWKPreferencesPrivate::createPreferences(
pageGroupRef
);
/external/webkit/Tools/TestWebKitAPI/win/
PlatformWebViewWin.cpp
59
PlatformWebView::PlatformWebView(WKContextRef contextRef, WKPageGroupRef
pageGroupRef
)
66
m_view = WKViewCreate(viewRect, contextRef,
pageGroupRef
, m_window);
/external/webkit/Source/WebKit2/UIProcess/mac/
WebInspectorProxyMac.mm
84
m_inspectorView.adoptNS([[WKView alloc] initWithFrame:NSZeroRect contextRef:toAPI(page()->process()->context())
pageGroupRef
:toAPI(inspectorPageGroup())]);
Completed in 268 milliseconds