HomeSort by relevance Sort by last modified time
    Searched defs:CSSSelectorWatch (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/dom/
CSSSelectorWatch.h 46 class CSSSelectorWatch : public DocumentSupplement {
48 virtual ~CSSSelectorWatch() { }
50 static CSSSelectorWatch& from(Document&);
58 CSSSelectorWatch(Document&);
59 void callbackSelectorChangeTimerFired(Timer<CSSSelectorWatch>*);
73 Timer<CSSSelectorWatch> m_callbackSelectorChangeTimer;
CSSSelectorWatch.cpp 32 #include "core/dom/CSSSelectorWatch.h"
46 static const char kSupplementName[] = "CSSSelectorWatch";
48 CSSSelectorWatch::CSSSelectorWatch(Document& document)
50 , m_callbackSelectorChangeTimer(this, &CSSSelectorWatch::callbackSelectorChangeTimerFired)
55 CSSSelectorWatch& CSSSelectorWatch::from(Document& document)
57 CSSSelectorWatch* watch = static_cast<CSSSelectorWatch*>(DocumentSupplement::from(&document, kSupplementName));
59 watch = new CSSSelectorWatch(document)
    [all...]

Completed in 1596 milliseconds