Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(110)

Side by Side Diff: third_party/WebKit/Source/core/dom/Document.h

Issue 2430513003: Move some Document timers to frame-specific task runners. (Closed)
Patch Set: Remove FrameTimer Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/dom/Document.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * (C) 2001 Dirk Mueller (mueller@kde.org) 4 * (C) 2001 Dirk Mueller (mueller@kde.org)
5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org)
6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All
7 * rights reserved. 7 * rights reserved.
8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. 8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved.
9 * (http://www.torchmobile.com/) 9 * (http://www.torchmobile.com/)
10 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) 10 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
(...skipping 1583 matching lines...) Expand 10 before | Expand all | Expand 10 after
1594 LayoutView* m_layoutView; 1594 LayoutView* m_layoutView;
1595 1595
1596 WeakMember<Document> m_contextDocument; 1596 WeakMember<Document> m_contextDocument;
1597 1597
1598 // For early return in Fullscreen::fromIfExists() 1598 // For early return in Fullscreen::fromIfExists()
1599 bool m_hasFullscreenSupplement; 1599 bool m_hasFullscreenSupplement;
1600 1600
1601 HeapVector<Member<Element>> m_topLayerElements; 1601 HeapVector<Member<Element>> m_topLayerElements;
1602 1602
1603 int m_loadEventDelayCount; 1603 int m_loadEventDelayCount;
1604 Timer<Document> m_loadEventDelayTimer; 1604 TaskRunnerTimer<Document> m_loadEventDelayTimer;
1605 Timer<Document> m_pluginLoadingTimer; 1605 TaskRunnerTimer<Document> m_pluginLoadingTimer;
1606 1606
1607 ViewportDescription m_viewportDescription; 1607 ViewportDescription m_viewportDescription;
1608 ViewportDescription m_legacyViewportDescription; 1608 ViewportDescription m_legacyViewportDescription;
1609 Length m_viewportDefaultMinWidth; 1609 Length m_viewportDefaultMinWidth;
1610 1610
1611 ReferrerPolicy m_referrerPolicy; 1611 ReferrerPolicy m_referrerPolicy;
1612 1612
1613 DocumentTiming m_documentTiming; 1613 DocumentTiming m_documentTiming;
1614 Member<MediaQueryMatcher> m_mediaQueryMatcher; 1614 Member<MediaQueryMatcher> m_mediaQueryMatcher;
1615 bool m_writeRecursionIsTooDeep; 1615 bool m_writeRecursionIsTooDeep;
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
1715 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); 1715 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true);
1716 1716
1717 } // namespace blink 1717 } // namespace blink
1718 1718
1719 #ifndef NDEBUG 1719 #ifndef NDEBUG
1720 // Outside the WebCore namespace for ease of invocation from gdb. 1720 // Outside the WebCore namespace for ease of invocation from gdb.
1721 CORE_EXPORT void showLiveDocumentInstances(); 1721 CORE_EXPORT void showLiveDocumentInstances();
1722 #endif 1722 #endif
1723 1723
1724 #endif // Document_h 1724 #endif // Document_h
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/dom/Document.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698