HomeSort by relevance Sort by last modified time
    Searched refs:pageGroup (Results 1 - 25 of 45) sorted by null

1 2

  /external/webkit/Source/WebKit2/WebProcess/WebPage/
WebPageGroupProxy.cpp 36 RefPtr<WebPageGroupProxy> pageGroup = adoptRef(new WebPageGroupProxy(data));
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/
WKPageGroup.h 39 WK_EXPORT WKStringRef WKPageGroupCopyIdentifier(WKPageGroupRef pageGroup);
41 WK_EXPORT void WKPageGroupSetPreferences(WKPageGroupRef pageGroup, WKPreferencesRef preferences);
42 WK_EXPORT WKPreferencesRef WKPageGroupGetPreferences(WKPageGroupRef pageGroup);
WKPageGroup.cpp 42 RefPtr<WebPageGroup> pageGroup = WebPageGroup::create(toWTFString(identifier));
43 return toAPI(pageGroup.release().leakRef());
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
InjectedBundle.cpp 50 #include <WebCore/PageGroup.h>
97 PageGroup::setShouldTrackVisitedLinks(shouldTrackVisitedLinks);
102 PageGroup::removeAllVisitedLinks();
105 void InjectedBundle::overrideXSSAuditorEnabledForTestRunner(WebPageGroupProxy* pageGroup, bool enabled)
111 const HashSet<Page*>& pages = PageGroup::pageGroup(pageGroup->identifier())->pages();
116 void InjectedBundle::overrideAllowUniversalAccessFromFileURLsForTestRunner(WebPageGroupProxy* pageGroup, bool enabled)
122 const HashSet<Page*>& pages = PageGroup::pageGroup(pageGroup->identifier())->pages()
    [all...]
InjectedBundleClient.cpp 49 void InjectedBundleClient::didInitializePageGroup(InjectedBundle* bundle, WebPageGroupProxy* pageGroup)
54 m_client.didInitializePageGroup(toAPI(bundle), toAPI(pageGroup), m_client.clientInfo);
InjectedBundleUserMessageCoders.h 41 // - BundlePageGroup -> PageGroup
70 WebPageGroupProxy* pageGroup = static_cast<WebPageGroupProxy*>(m_root);
71 encoder->encode(pageGroup->pageGroupID());
84 // - PageGroup -> BundlePageGroup
InjectedBundle.h 93 void overrideXSSAuditorEnabledForTestRunner(WebPageGroupProxy* pageGroup, bool enabled);
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
WKBundlePrivate.h 58 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, bool enabled)
    [all...]
WKBundle.h 39 typedef void (*WKBundleDidInitializePageGroupCallback)(WKBundleRef bundle, WKBundlePageGroupRef pageGroup, const void* clientInfo);
  /external/webkit/Tools/TestWebKitAPI/Tests/WebKit2/
DocumentStartUserScriptAlertCrash.cpp 48 WKRetainPtr<WKPageGroupRef> pageGroup(AdoptWK, WKPageGroupCreateWithIdentifier(WKStringCreateWithUTF8CString("DocumentStartUserScriptAlertCrashTestPageGroup")));
50 WKRetainPtr<WKContextRef> context(AdoptWK, Util::createContextForInjectedBundleTest("DocumentStartUserScriptAlertCrashTest", pageGroup.get()));
51 PlatformWebView webView(context.get(), pageGroup.get());
DocumentStartUserScriptAlertCrash_Bundle.cpp 46 WKBundlePageGroupRef pageGroup = static_cast<WKBundlePageGroupRef>(userData);
49 WKBundleAddUserScript(bundle, pageGroup, WKBundleScriptWorldNormalWorld(), source.get(), 0, 0, 0, kWKInjectAtDocumentStart, kWKInjectInAllFrames);
  /external/webkit/Source/WebKit2/UIProcess/API/C/gtk/
WKView.h 38 WK_EXPORT WKViewRef WKViewCreate(WKContextRef context, WKPageGroupRef pageGroup);
  /external/webkit/Source/WebKit2/UIProcess/
WebPreferences.cpp 48 void WebPreferences::addPageGroup(WebPageGroup* pageGroup)
50 m_pageGroups.add(pageGroup);
53 void WebPreferences::removePageGroup(WebPageGroup* pageGroup)
55 m_pageGroups.remove(pageGroup);
WebPageGroup.cpp 52 RefPtr<WebPageGroup> pageGroup = adoptRef(new WebPageGroup(identifier, visibleToInjectedBundle, visibleToHistoryClient));
54 webPageGroupMap().set(pageGroup->pageGroupID(), pageGroup.get());
56 return pageGroup.release();
WebInspectorProxy.cpp 49 static WebPageGroup* pageGroup = WebPageGroup::create("__WebInspectorPageGroup__", false, false).leakRef();
50 return pageGroup;
162 return page->pageGroup() == inspectorPageGroup();
WebContextUserMessageCoders.h 38 // - PageGroup -> BundlePageGroup
67 WebPageGroup* pageGroup = static_cast<WebPageGroup*>(m_root);
68 encoder->encode(pageGroup->data());
81 // - PageGroup -> BundlePageGroup
  /external/webkit/Source/WebKit2/UIProcess/gtk/
WebView.h 50 static PassRefPtr<WebView> create(WebContext* context, WebPageGroup* pageGroup)
52 return adoptRef(new WebView(context, pageGroup));
  /external/webkit/Tools/TestWebKitAPI/
InjectedBundleController.cpp 87 void InjectedBundleController::didInitializePageGroup(WKBundleRef bundle, WKBundlePageGroupRef pageGroup, const void* clientInfo)
91 self->m_currentTest->didInitializePageGroup(bundle, pageGroup);
  /external/webkit/Source/WebKit/chromium/src/
StorageEventDispatcherImpl.cpp 41 #include "PageGroup.h"
48 : m_pageGroup(PageGroup::pageGroup(groupName))
WebViewImpl.cpp 77 #include "PageGroup.h"
232 Page::visitedStateChanged(PageGroup::pageGroup(pageGroupName), linkHash);
237 Page::allVisitedStateChanged(PageGroup::pageGroup(pageGroupName));
242 PageGroup* pageGroup = PageGroup::pageGroup(pageGroupName);
243 ASSERT(pageGroup);
    [all...]
  /external/webkit/Tools/WebKitTestRunner/InjectedBundle/
InjectedBundle.cpp 67 void InjectedBundle::didInitializePageGroup(WKBundleRef bundle, WKBundlePageGroupRef pageGroup, const void* clientInfo)
69 static_cast<InjectedBundle*>(const_cast<void*>(clientInfo))->didInitializePageGroup(pageGroup);
113 void InjectedBundle::didInitializePageGroup(WKBundlePageGroupRef pageGroup)
115 m_pageGroup = pageGroup;
InjectedBundle.h 52 WKBundlePageGroupRef pageGroup() const { return m_pageGroup; }
  /external/webkit/Source/WebCore/bindings/js/
PageScriptDebugServer.cpp 40 #include "PageGroup.h"
154 void PageScriptDebugServer::setJavaScriptPaused(const PageGroup& pageGroup, bool paused)
158 const HashSet<Page*>& pages = pageGroup.pages();
  /external/webkit/Source/WebKit2/UIProcess/API/C/win/
WKView.h 61 WK_EXPORT WKViewRef WKViewCreate(RECT rect, WKContextRef context, WKPageGroupRef pageGroup, HWND parentWindow);
  /external/webkit/Source/WebCore/page/
PageGroup.h 45 class PageGroup {
46 WTF_MAKE_NONCOPYABLE(PageGroup); WTF_MAKE_FAST_ALLOCATED;
48 PageGroup(const String& name);
49 PageGroup(Page*);
50 ~PageGroup();
52 static PageGroup* pageGroup(const String& groupName);

Completed in 183 milliseconds

1 2