Searched refs:pageGroup (Results 1 - 25 of 45) sorted by relevance

12

/external/webkit/Source/WebKit2/WebProcess/WebPage/
H A DWebPageGroupProxy.cpp36 RefPtr<WebPageGroupProxy> pageGroup = adoptRef(new WebPageGroupProxy(data)); local
38 if (pageGroup->isVisibleToInjectedBundle() && WebProcess::shared().injectedBundle())
39 WebProcess::shared().injectedBundle()->didInitializePageGroup(pageGroup.get());
41 return pageGroup.release();
/external/webkit/Source/WebKit2/UIProcess/API/C/
H A DWKPageGroup.h39 WK_EXPORT WKStringRef WKPageGroupCopyIdentifier(WKPageGroupRef pageGroup);
41 WK_EXPORT void WKPageGroupSetPreferences(WKPageGroupRef pageGroup, WKPreferencesRef preferences);
42 WK_EXPORT WKPreferencesRef WKPageGroupGetPreferences(WKPageGroupRef pageGroup);
H A DWKPageGroup.cpp42 RefPtr<WebPageGroup> pageGroup = WebPageGroup::create(toWTFString(identifier)); local
43 return toAPI(pageGroup.release().leakRef());
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
H A DInjectedBundle.cpp105 void InjectedBundle::overrideXSSAuditorEnabledForTestRunner(WebPageGroupProxy* pageGroup, bool enabled) argument
111 const HashSet<Page*>& pages = PageGroup::pageGroup(pageGroup->identifier())->pages();
116 void InjectedBundle::overrideAllowUniversalAccessFromFileURLsForTestRunner(WebPageGroupProxy* pageGroup, bool enabled) argument
122 const HashSet<Page*>& pages = PageGroup::pageGroup(pageGroup->identifier())->pages();
127 void InjectedBundle::setAllowFileAccessFromFileURLs(WebPageGroupProxy* pageGroup, bool enabled) argument
133 const HashSet<Page*>& pages = PageGroup::pageGroup(pageGroup->identifier())->pages();
216 void InjectedBundle::addUserScript(WebPageGroupProxy* pageGroup, InjectedBundleScriptWorl argument
222 addUserStyleSheet(WebPageGroupProxy* pageGroup, InjectedBundleScriptWorld* scriptWorld, const String& source, const String& url, ImmutableArray* whitelist, ImmutableArray* blacklist, WebCore::UserContentInjectedFrames injectedFrames) argument
228 removeUserScript(WebPageGroupProxy* pageGroup, InjectedBundleScriptWorld* scriptWorld, const String& url) argument
234 removeUserStyleSheet(WebPageGroupProxy* pageGroup, InjectedBundleScriptWorld* scriptWorld, const String& url) argument
240 removeUserScripts(WebPageGroupProxy* pageGroup, InjectedBundleScriptWorld* scriptWorld) argument
245 removeUserStyleSheets(WebPageGroupProxy* pageGroup, InjectedBundleScriptWorld* scriptWorld) argument
250 removeAllUserContent(WebPageGroupProxy* pageGroup) argument
296 didInitializePageGroup(WebPageGroupProxy* pageGroup) argument
[all...]
H A DInjectedBundleClient.cpp49 void InjectedBundleClient::didInitializePageGroup(InjectedBundle* bundle, WebPageGroupProxy* pageGroup) argument
54 m_client.didInitializePageGroup(toAPI(bundle), toAPI(pageGroup), m_client.clientInfo);
H A DInjectedBundleUserMessageCoders.h70 WebPageGroupProxy* pageGroup = static_cast<WebPageGroupProxy*>(m_root); local
71 encoder->encode(pageGroup->pageGroupID());
H A DInjectedBundle.h93 void overrideXSSAuditorEnabledForTestRunner(WebPageGroupProxy* pageGroup, bool enabled);
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
H A DWKBundlePrivate.h58 WK_EXPORT void WKBundleAddUserScript(WKBundleRef bundle, WKBundlePageGroupRef pageGroup, WKBundleScriptWorldRef scriptWorld, WKStringRef source, WKURLRef url, WKArrayRef whitelist, WKArrayRef blacklist, WKUserScriptInjectionTime injectionTime, WKUserContentInjectedFrames injectedFrames);
59 WK_EXPORT void WKBundleAddUserStyleSheet(WKBundleRef bundle, WKBundlePageGroupRef pageGroup, WKBundleScriptWorldRef scriptWorld, WKStringRef source, WKURLRef url, WKArrayRef whitelist, WKArrayRef blacklist, WKUserContentInjectedFrames injectedFrames);
60 WK_EXPORT void WKBundleRemoveUserScript(WKBundleRef bundle, WKBundlePageGroupRef pageGroup, WKBundleScriptWorldRef scriptWorld, WKURLRef url);
61 WK_EXPORT void WKBundleRemoveUserStyleSheet(WKBundleRef bundle, WKBundlePageGroupRef pageGroup, WKBundleScriptWorldRef scriptWorld, WKURLRef url);
62 WK_EXPORT void WKBundleRemoveUserScripts(WKBundleRef bundle, WKBundlePageGroupRef pageGroup, WKBundleScriptWorldRef scriptWorld);
63 WK_EXPORT void WKBundleRemoveUserStyleSheets(WKBundleRef bundle, WKBundlePageGroupRef pageGroup, WKBundleScriptWorldRef scriptWorld);
64 WK_EXPORT void WKBundleRemoveAllUserContent(WKBundleRef bundle, WKBundlePageGroupRef pageGroup);
67 WK_EXPORT void WKBundleOverrideXSSAuditorEnabledForTestRunner(WKBundleRef bundle, WKBundlePageGroupRef pageGroup, bool enabled);
68 WK_EXPORT void WKBundleOverrideAllowUniversalAccessFromFileURLsForTestRunner(WKBundleRef bundle, WKBundlePageGroupRef pageGroup, bool enabled);
69 WK_EXPORT void WKBundleSetAllowFileAccessFromFileURLs(WKBundleRef bundle, WKBundlePageGroupRef pageGroup, boo
[all...]
H A DWKBundle.h39 typedef void (*WKBundleDidInitializePageGroupCallback)(WKBundleRef bundle, WKBundlePageGroupRef pageGroup, const void* clientInfo);
/external/webkit/Tools/TestWebKitAPI/Tests/WebKit2/
H A DDocumentStartUserScriptAlertCrash.cpp48 WKRetainPtr<WKPageGroupRef> pageGroup(AdoptWK, WKPageGroupCreateWithIdentifier(WKStringCreateWithUTF8CString("DocumentStartUserScriptAlertCrashTestPageGroup")));
50 WKRetainPtr<WKContextRef> context(AdoptWK, Util::createContextForInjectedBundleTest("DocumentStartUserScriptAlertCrashTest", pageGroup.get()));
51 PlatformWebView webView(context.get(), pageGroup.get());
H A DDocumentStartUserScriptAlertCrash_Bundle.cpp46 WKBundlePageGroupRef pageGroup = static_cast<WKBundlePageGroupRef>(userData); local
49 WKBundleAddUserScript(bundle, pageGroup, WKBundleScriptWorldNormalWorld(), source.get(), 0, 0, 0, kWKInjectAtDocumentStart, kWKInjectInAllFrames);
/external/webkit/Source/WebKit2/UIProcess/API/C/gtk/
H A DWKView.h38 WK_EXPORT WKViewRef WKViewCreate(WKContextRef context, WKPageGroupRef pageGroup);
/external/webkit/Source/WebKit2/UIProcess/
H A DWebPreferences.cpp48 void WebPreferences::addPageGroup(WebPageGroup* pageGroup) argument
50 m_pageGroups.add(pageGroup);
53 void WebPreferences::removePageGroup(WebPageGroup* pageGroup) argument
55 m_pageGroups.remove(pageGroup);
H A DWebPageGroup.cpp52 RefPtr<WebPageGroup> pageGroup = adoptRef(new WebPageGroup(identifier, visibleToInjectedBundle, visibleToHistoryClient)); local
54 webPageGroupMap().set(pageGroup->pageGroupID(), pageGroup.get());
56 return pageGroup.release();
H A DWebInspectorProxy.cpp49 static WebPageGroup* pageGroup = WebPageGroup::create("__WebInspectorPageGroup__", false, false).leakRef(); local
50 return pageGroup;
162 return page->pageGroup() == inspectorPageGroup();
H A DWebContextUserMessageCoders.h67 WebPageGroup* pageGroup = static_cast<WebPageGroup*>(m_root); local
68 encoder->encode(pageGroup->data());
/external/webkit/Tools/TestWebKitAPI/
H A DInjectedBundleController.cpp87 void InjectedBundleController::didInitializePageGroup(WKBundleRef bundle, WKBundlePageGroupRef pageGroup, const void* clientInfo) argument
91 self->m_currentTest->didInitializePageGroup(bundle, pageGroup);
/external/webkit/Source/WebKit/chromium/src/
H A DStorageEventDispatcherImpl.cpp48 : m_pageGroup(PageGroup::pageGroup(groupName))
H A DWebViewImpl.cpp232 Page::visitedStateChanged(PageGroup::pageGroup(pageGroupName), linkHash);
237 Page::allVisitedStateChanged(PageGroup::pageGroup(pageGroupName));
242 PageGroup* pageGroup = PageGroup::pageGroup(pageGroupName); local
243 ASSERT(pageGroup);
245 if (pageGroup->pages().isEmpty())
249 pageGroupLoadDeferrerStack.append(new PageGroupLoadDeferrer(*pageGroup->pages().begin(), true));
2110 PageGroup* pageGroup = PageGroup::pageGroup(pageGroupName); local
2112 pageGroup
2126 PageGroup* pageGroup = PageGroup::pageGroup(pageGroupName); local
2141 PageGroup* pageGroup = PageGroup::pageGroup(pageGroupName); local
[all...]
/external/webkit/Tools/WebKitTestRunner/InjectedBundle/
H A DInjectedBundle.cpp67 void InjectedBundle::didInitializePageGroup(WKBundleRef bundle, WKBundlePageGroupRef pageGroup, const void* clientInfo) argument
69 static_cast<InjectedBundle*>(const_cast<void*>(clientInfo))->didInitializePageGroup(pageGroup);
113 void InjectedBundle::didInitializePageGroup(WKBundlePageGroupRef pageGroup) argument
115 m_pageGroup = pageGroup;
H A DInjectedBundle.h52 WKBundlePageGroupRef pageGroup() const { return m_pageGroup; } function in class:WTR::InjectedBundle
/external/webkit/Source/WebCore/bindings/js/
H A DPageScriptDebugServer.cpp154 void PageScriptDebugServer::setJavaScriptPaused(const PageGroup& pageGroup, bool paused) argument
158 const HashSet<Page*>& pages = pageGroup.pages();
/external/webkit/Source/WebKit2/UIProcess/gtk/
H A DWebView.h50 static PassRefPtr<WebView> create(WebContext* context, WebPageGroup* pageGroup) argument
52 return adoptRef(new WebView(context, pageGroup));
/external/webkit/Source/WebKit2/UIProcess/API/C/win/
H A DWKView.h61 WK_EXPORT WKViewRef WKViewCreate(RECT rect, WKContextRef context, WKPageGroupRef pageGroup, HWND parentWindow);
/external/webkit/Source/WebCore/page/
H A DPageGroup.h52 static PageGroup* pageGroup(const String& groupName);

Completed in 728 milliseconds

12