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 r
ights reserved. | 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All r
ights reserved. |
7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) | 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) |
8 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) | 8 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) |
9 * Copyright (C) 2011 Google Inc. All rights reserved. | 9 * Copyright (C) 2011 Google Inc. All rights reserved. |
10 * | 10 * |
(...skipping 911 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
922 | 922 |
923 // Used to allow element that loads data without going through a FrameLoader
to delay the 'load' event. | 923 // Used to allow element that loads data without going through a FrameLoader
to delay the 'load' event. |
924 void incrementLoadEventDelayCount() { ++m_loadEventDelayCount; } | 924 void incrementLoadEventDelayCount() { ++m_loadEventDelayCount; } |
925 void decrementLoadEventDelayCount(); | 925 void decrementLoadEventDelayCount(); |
926 bool isDelayingLoadEvent() const { return m_loadEventDelayCount; } | 926 bool isDelayingLoadEvent() const { return m_loadEventDelayCount; } |
927 void loadPluginsSoon(); | 927 void loadPluginsSoon(); |
928 | 928 |
929 PassRefPtr<Touch> createTouch(DOMWindow*, EventTarget*, int identifier, int
pageX, int pageY, int screenX, int screenY, int radiusX, int radiusY, float rota
tionAngle, float force) const; | 929 PassRefPtr<Touch> createTouch(DOMWindow*, EventTarget*, int identifier, int
pageX, int pageY, int screenX, int screenY, int radiusX, int radiusY, float rota
tionAngle, float force) const; |
930 PassRefPtr<TouchList> createTouchList(Vector<RefPtr<Touch> >&) const; | 930 PassRefPtr<TouchList> createTouchList(Vector<RefPtr<Touch> >&) const; |
931 | 931 |
932 const DocumentTiming* timing() const { return &m_documentTiming; } | 932 const DocumentTiming& timing() const { return m_documentTiming; } |
933 | 933 |
934 int requestAnimationFrame(PassOwnPtr<RequestAnimationFrameCallback>); | 934 int requestAnimationFrame(PassOwnPtr<RequestAnimationFrameCallback>); |
935 void cancelAnimationFrame(int id); | 935 void cancelAnimationFrame(int id); |
936 void serviceScriptedAnimations(double monotonicAnimationStartTime); | 936 void serviceScriptedAnimations(double monotonicAnimationStartTime); |
937 | 937 |
938 virtual EventTarget* errorEventTarget() OVERRIDE FINAL; | 938 virtual EventTarget* errorEventTarget() OVERRIDE FINAL; |
939 virtual void logExceptionToConsole(const String& errorMessage, const String&
sourceURL, int lineNumber, int columnNumber, PassRefPtr<ScriptCallStack>) OVERR
IDE FINAL; | 939 virtual void logExceptionToConsole(const String& errorMessage, const String&
sourceURL, int lineNumber, int columnNumber, PassRefPtr<ScriptCallStack>) OVERR
IDE FINAL; |
940 | 940 |
941 void initDNSPrefetch(); | 941 void initDNSPrefetch(); |
942 | 942 |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
979 void didLoadAllImports(); | 979 void didLoadAllImports(); |
980 | 980 |
981 void adjustFloatQuadsForScrollAndAbsoluteZoom(Vector<FloatQuad>&, RenderObje
ct&); | 981 void adjustFloatQuadsForScrollAndAbsoluteZoom(Vector<FloatQuad>&, RenderObje
ct&); |
982 void adjustFloatRectForScrollAndAbsoluteZoom(FloatRect&, RenderObject&); | 982 void adjustFloatRectForScrollAndAbsoluteZoom(FloatRect&, RenderObject&); |
983 | 983 |
984 bool hasActiveParser(); | 984 bool hasActiveParser(); |
985 unsigned activeParserCount() { return m_activeParserCount; } | 985 unsigned activeParserCount() { return m_activeParserCount; } |
986 void incrementActiveParserCount() { ++m_activeParserCount; } | 986 void incrementActiveParserCount() { ++m_activeParserCount; } |
987 void decrementActiveParserCount(); | 987 void decrementActiveParserCount(); |
988 | 988 |
989 void setContextFeatures(PassRefPtr<ContextFeatures>); | 989 void setContextFeatures(ContextFeatures&); |
990 ContextFeatures* contextFeatures() const { return m_contextFeatures.get(); } | 990 ContextFeatures& contextFeatures() const { return *m_contextFeatures; } |
991 | 991 |
992 ElementDataCache* elementDataCache() { return m_elementDataCache.get(); } | 992 ElementDataCache* elementDataCache() { return m_elementDataCache.get(); } |
993 | 993 |
994 void didRemoveAllPendingStylesheet(); | 994 void didRemoveAllPendingStylesheet(); |
995 void setNeedsNotifyRemoveAllPendingStylesheet() { m_needsNotifyRemoveAllPend
ingStylesheet = true; } | 995 void setNeedsNotifyRemoveAllPendingStylesheet() { m_needsNotifyRemoveAllPend
ingStylesheet = true; } |
996 void clearStyleResolver(); | 996 void clearStyleResolver(); |
997 | 997 |
998 bool inStyleRecalc() const { return m_lifecycle.state() == DocumentLifecycle
::InStyleRecalc; } | 998 bool inStyleRecalc() const { return m_lifecycle.state() == DocumentLifecycle
::InStyleRecalc; } |
999 | 999 |
1000 // Return a Locale for the default locale if the argument is null or empty. | 1000 // Return a Locale for the default locale if the argument is null or empty. |
(...skipping 395 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1396 inline bool Node::isDocumentNode() const | 1396 inline bool Node::isDocumentNode() const |
1397 { | 1397 { |
1398 return this == document(); | 1398 return this == document(); |
1399 } | 1399 } |
1400 | 1400 |
1401 Node* eventTargetNodeForDocument(Document*); | 1401 Node* eventTargetNodeForDocument(Document*); |
1402 | 1402 |
1403 } // namespace WebCore | 1403 } // namespace WebCore |
1404 | 1404 |
1405 #endif // Document_h | 1405 #endif // Document_h |
OLD | NEW |