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

  /external/chromium_org/third_party/WebKit/Source/core/html/imports/
HTMLImportTreeRoot.cpp 6 #include "core/html/imports/HTMLImportTreeRoot.h"
15 PassOwnPtrWillBeRawPtr<HTMLImportTreeRoot> HTMLImportTreeRoot::create(Document* document)
17 return adoptPtrWillBeNoop(new HTMLImportTreeRoot(document));
20 HTMLImportTreeRoot::HTMLImportTreeRoot(Document* document)
23 , m_recalcTimer(this, &HTMLImportTreeRoot::recalcTimerFired)
28 HTMLImportTreeRoot::~HTMLImportTreeRoot()
38 Document* HTMLImportTreeRoot::document() cons
    [all...]
HTMLImportTreeRoot.h 16 class HTMLImportTreeRoot : public HTMLImport {
18 static PassOwnPtrWillBeRawPtr<HTMLImportTreeRoot> create(Document*);
20 virtual ~HTMLImportTreeRoot();
36 explicit HTMLImportTreeRoot(Document*);
38 void recalcTimerFired(Timer<HTMLImportTreeRoot>*);
41 Timer<HTMLImportTreeRoot> m_recalcTimer;
48 DEFINE_TYPE_CASTS(HTMLImportTreeRoot, HTMLImport, import, import->isRoot(), import.isRoot());

Completed in 76 milliseconds