Home | History | Annotate | Download | only in InjectedBundle

Lines Matching defs:page

57 void InjectedBundle::didCreatePage(WKBundleRef bundle, WKBundlePageRef page, const void* clientInfo)
59 static_cast<InjectedBundle*>(const_cast<void*>(clientInfo))->didCreatePage(page);
62 void InjectedBundle::willDestroyPage(WKBundleRef bundle, WKBundlePageRef page, const void* clientInfo)
64 static_cast<InjectedBundle*>(const_cast<void*>(clientInfo))->willDestroyPage(page);
97 void InjectedBundle::didCreatePage(WKBundlePageRef page)
99 m_pages.append(adoptPtr(new InjectedBundlePage(page)));
102 void InjectedBundle::willDestroyPage(WKBundlePageRef page)
106 if (m_pages[i]->page() == page) {
118 InjectedBundlePage* InjectedBundle::page() const
121 // page instead of just assuming it's the first one.
174 page()->reset();
183 page()->stopLoading();
208 pagesToClose.append(m_pages[i]->page());