Home
last modified time | relevance | path

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

/external/webkit/Source/WebCore/dom/
DDocument.cpp3963 HashSet<Element*>::iterator end = m_documentActivationCallbackElements.end(); in documentWillBecomeInactive()
3964 … for (HashSet<Element*>::iterator i = m_documentActivationCallbackElements.begin(); i != end; ++i) in documentWillBecomeInactive()
3970 HashSet<Element*>::iterator end = m_documentActivationCallbackElements.end(); in documentDidBecomeActive()
3971 … for (HashSet<Element*>::iterator i = m_documentActivationCallbackElements.begin(); i != end; ++i) in documentDidBecomeActive()
3985 m_documentActivationCallbackElements.add(e); in registerForDocumentActivationCallbacks()
3990 m_documentActivationCallbackElements.remove(e); in unregisterForDocumentActivationCallbacks()
DDocument.h1351 HashSet<Element*> m_documentActivationCallbackElements; variable