Home
last modified time | relevance | path

Searched refs:m_contentFrame (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/html/
DHTMLFrameOwnerElement.cpp40 , m_contentFrame(0) in HTMLFrameOwnerElement()
57 ASSERT(!m_contentFrame || m_contentFrame->ownerElement() != this); in setContentFrame()
60 m_contentFrame = &frame; in setContentFrame()
68 if (!m_contentFrame) in clearContentFrame()
71 m_contentFrame = 0; in clearContentFrame()
92 if (m_contentFrame) in ~HTMLFrameOwnerElement()
93 m_contentFrame->disconnectOwnerElement(); in ~HTMLFrameOwnerElement()
98 return m_contentFrame ? m_contentFrame->document() : 0; in contentDocument()
103 return m_contentFrame ? m_contentFrame->domWindow() : 0; in contentWindow()
113 return m_contentFrame && HTMLElement::isKeyboardFocusable(); in isKeyboardFocusable()
DHTMLFrameOwnerElement.h39 Frame* contentFrame() const { return m_contentFrame; } in contentFrame()
76 Frame* m_contentFrame; variable