Home | History | Annotate | Download | only in UIProcess

Lines Matching defs:WebPageGroup

27 #include "WebPageGroup.h"
42 typedef HashMap<uint64_t, WebPageGroup*> WebPageGroupMap;
50 PassRefPtr<WebPageGroup> WebPageGroup::create(const String& identifier, bool visibleToInjectedBundle, bool visibleToHistoryClient)
52 RefPtr<WebPageGroup> pageGroup = adoptRef(new WebPageGroup(identifier, visibleToInjectedBundle, visibleToHistoryClient));
59 WebPageGroup* WebPageGroup::get(uint64_t pageGroupID)
64 WebPageGroup::WebPageGroup(const String& identifier, bool visibleToInjectedBundle, bool visibleToHistoryClient)
77 WebPageGroup::~WebPageGroup()
84 void WebPageGroup::addPage(WebPageProxy* page)
89 void WebPageGroup::removePage(WebPageProxy* page)
94 void WebPageGroup::setPreferences(WebPreferences* preferences)
111 WebPreferences* WebPageGroup::preferences() const
118 m_preferences->addPageGroup(const_cast<WebPageGroup*>(this));
123 void WebPageGroup::preferencesDidChange()