• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/WebCore-7537.78.1/loader/icon/

Lines Matching refs:m_frame

54     : m_frame(frame)
72 const Vector<IconURL>& iconURLs = m_frame->document()->iconURLs(iconType);
85 if (m_frame->tree() && m_frame->tree()->parent())
107 const Vector<IconURL>& allIconURLs = m_frame->document()->iconURLs(iconTypesMask);
124 LOG(IconDatabase, "Committing iconURL %s to database for pageURLs %s and %s", icon.string().ascii().data(), m_frame->document()->url().string().ascii().data(), m_frame->loader()->initialRequest().url().string().ascii().data());
125 iconDatabase().setIconURLForPageURL(icon.string(), m_frame->document()->url().string());
126 iconDatabase().setIconURLForPageURL(icon.string(), m_frame->loader()->initialRequest().url().string());
133 if (!m_frame->loader()->isLoadingMainFrame())
139 ASSERT(!m_frame->tree()->parent());
140 if (!documentCanHaveIcon(m_frame->document()->url()))
150 Settings* settings = m_frame->settings();
156 if (m_frame->loader()->loadType() == FrameLoadTypeReload && m_frame->loader()->loadType() == FrameLoadTypeReloadFromOrigin) {
162 m_frame->loader()->documentLoader()->getIconLoadDecisionForIconURL(urlString);
168 IconLoadDecision decision = iconDatabase().synchronousLoadDecisionForIconURL(urlString, m_frame->loader()->documentLoader());
177 m_frame->loader()->client()->registerForIconNotification();
206 if (iconDatabase().supportsAsynchronousMode() && m_frame->page()->settings()->privateBrowsingEnabled())
219 m_frame->loader()->documentLoader()->getIconDataForIconURL(urlString);
229 m_frame->loader()->client()->registerForIconNotification();
230 iconDatabase().synchronousIconForPageURL(m_frame->document()->url().string(), IntSize(0, 0));
231 iconDatabase().synchronousIconForPageURL(m_frame->loader()->initialRequest().url().string(), IntSize(0, 0));
233 m_frame->loader()->client()->dispatchDidReceiveIcon();
239 m_iconLoader = IconLoader::create(m_frame);
257 KURL documentURL = m_frame->document()->url();