OLD | NEW |
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 1066 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1077 bool isContextThread() const final; | 1077 bool isContextThread() const final; |
1078 bool isJSExecutionForbidden() const final { return false; } | 1078 bool isJSExecutionForbidden() const final { return false; } |
1079 | 1079 |
1080 bool containsValidityStyleRules() const { | 1080 bool containsValidityStyleRules() const { |
1081 return m_containsValidityStyleRules; | 1081 return m_containsValidityStyleRules; |
1082 } | 1082 } |
1083 void setContainsValidityStyleRules() { m_containsValidityStyleRules = true; } | 1083 void setContainsValidityStyleRules() { m_containsValidityStyleRules = true; } |
1084 | 1084 |
1085 void enqueueResizeEvent(); | 1085 void enqueueResizeEvent(); |
1086 void enqueueScrollEventForNode(Node*); | 1086 void enqueueScrollEventForNode(Node*); |
| 1087 void enqueueAnimationFrameTask(std::unique_ptr<WTF::Closure>); |
1087 void enqueueAnimationFrameEvent(Event*); | 1088 void enqueueAnimationFrameEvent(Event*); |
1088 // Only one event for a target/event type combination will be dispatched per | 1089 // Only one event for a target/event type combination will be dispatched per |
1089 // frame. | 1090 // frame. |
1090 void enqueueUniqueAnimationFrameEvent(Event*); | 1091 void enqueueUniqueAnimationFrameEvent(Event*); |
1091 void enqueueMediaQueryChangeListeners( | 1092 void enqueueMediaQueryChangeListeners( |
1092 HeapVector<Member<MediaQueryListListener>>&); | 1093 HeapVector<Member<MediaQueryListListener>>&); |
1093 void enqueueVisualViewportScrollEvent(); | 1094 void enqueueVisualViewportScrollEvent(); |
1094 void enqueueVisualViewportResizeEvent(); | 1095 void enqueueVisualViewportResizeEvent(); |
1095 | 1096 |
1096 void dispatchEventsForPrinting(); | 1097 void dispatchEventsForPrinting(); |
(...skipping 620 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1717 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); | 1718 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); |
1718 | 1719 |
1719 } // namespace blink | 1720 } // namespace blink |
1720 | 1721 |
1721 #ifndef NDEBUG | 1722 #ifndef NDEBUG |
1722 // Outside the WebCore namespace for ease of invocation from gdb. | 1723 // Outside the WebCore namespace for ease of invocation from gdb. |
1723 CORE_EXPORT void showLiveDocumentInstances(); | 1724 CORE_EXPORT void showLiveDocumentInstances(); |
1724 #endif | 1725 #endif |
1725 | 1726 |
1726 #endif // Document_h | 1727 #endif // Document_h |
OLD | NEW |