| 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 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 class XPathResult; | 154 class XPathResult; |
| 155 | 155 |
| 156 #if ENABLE(SVG) | 156 #if ENABLE(SVG) |
| 157 class SVGDocumentExtensions; | 157 class SVGDocumentExtensions; |
| 158 #endif | 158 #endif |
| 159 | 159 |
| 160 #if ENABLE(XSLT) | 160 #if ENABLE(XSLT) |
| 161 class TransformSource; | 161 class TransformSource; |
| 162 #endif | 162 #endif |
| 163 | 163 |
| 164 #if ENABLE(DASHBOARD_SUPPORT) || ENABLE(DRAGGABLE_REGION) | 164 #if ENABLE(DRAGGABLE_REGION) |
| 165 struct AnnotatedRegionValue; | 165 struct AnnotatedRegionValue; |
| 166 #endif | 166 #endif |
| 167 | 167 |
| 168 #if ENABLE(TOUCH_EVENTS) | 168 #if ENABLE(TOUCH_EVENTS) |
| 169 class Touch; | 169 class Touch; |
| 170 class TouchList; | 170 class TouchList; |
| 171 #endif | 171 #endif |
| 172 | 172 |
| 173 #if ENABLE(REQUEST_ANIMATION_FRAME) | 173 #if ENABLE(REQUEST_ANIMATION_FRAME) |
| 174 class RequestAnimationFrameCallback; | 174 class RequestAnimationFrameCallback; |
| (...skipping 821 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 996 } | 996 } |
| 997 void displayBufferModifiedByEncoding(UChar* buffer, unsigned len) const | 997 void displayBufferModifiedByEncoding(UChar* buffer, unsigned len) const |
| 998 { | 998 { |
| 999 displayBufferModifiedByEncodingInternal(buffer, len); | 999 displayBufferModifiedByEncodingInternal(buffer, len); |
| 1000 } | 1000 } |
| 1001 | 1001 |
| 1002 // Quirk for the benefit of Apple's Dictionary application. | 1002 // Quirk for the benefit of Apple's Dictionary application. |
| 1003 void setFrameElementsShouldIgnoreScrolling(bool ignore) { m_frameElementsSho
uldIgnoreScrolling = ignore; } | 1003 void setFrameElementsShouldIgnoreScrolling(bool ignore) { m_frameElementsSho
uldIgnoreScrolling = ignore; } |
| 1004 bool frameElementsShouldIgnoreScrolling() const { return m_frameElementsShou
ldIgnoreScrolling; } | 1004 bool frameElementsShouldIgnoreScrolling() const { return m_frameElementsShou
ldIgnoreScrolling; } |
| 1005 | 1005 |
| 1006 #if ENABLE(DASHBOARD_SUPPORT) || ENABLE(DRAGGABLE_REGION) | 1006 #if ENABLE(DRAGGABLE_REGION) |
| 1007 void setAnnotatedRegionsDirty(bool f) { m_annotatedRegionsDirty = f; } | 1007 void setAnnotatedRegionsDirty(bool f) { m_annotatedRegionsDirty = f; } |
| 1008 bool annotatedRegionsDirty() const { return m_annotatedRegionsDirty; } | 1008 bool annotatedRegionsDirty() const { return m_annotatedRegionsDirty; } |
| 1009 bool hasAnnotatedRegions () const { return m_hasAnnotatedRegions; } | 1009 bool hasAnnotatedRegions () const { return m_hasAnnotatedRegions; } |
| 1010 void setHasAnnotatedRegions(bool f) { m_hasAnnotatedRegions = f; } | 1010 void setHasAnnotatedRegions(bool f) { m_hasAnnotatedRegions = f; } |
| 1011 const Vector<AnnotatedRegionValue>& annotatedRegions() const; | 1011 const Vector<AnnotatedRegionValue>& annotatedRegions() const; |
| 1012 void setAnnotatedRegions(const Vector<AnnotatedRegionValue>&); | 1012 void setAnnotatedRegions(const Vector<AnnotatedRegionValue>&); |
| 1013 #endif | 1013 #endif |
| 1014 | 1014 |
| 1015 virtual void removeAllEventListeners(); | 1015 virtual void removeAllEventListeners(); |
| 1016 | 1016 |
| (...skipping 442 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1459 | 1459 |
| 1460 HashSet<LiveNodeListBase*> m_listsInvalidatedAtDocument; | 1460 HashSet<LiveNodeListBase*> m_listsInvalidatedAtDocument; |
| 1461 unsigned m_nodeListCounts[numNodeListInvalidationTypes]; | 1461 unsigned m_nodeListCounts[numNodeListInvalidationTypes]; |
| 1462 | 1462 |
| 1463 RefPtr<XPathEvaluator> m_xpathEvaluator; | 1463 RefPtr<XPathEvaluator> m_xpathEvaluator; |
| 1464 | 1464 |
| 1465 #if ENABLE(SVG) | 1465 #if ENABLE(SVG) |
| 1466 OwnPtr<SVGDocumentExtensions> m_svgExtensions; | 1466 OwnPtr<SVGDocumentExtensions> m_svgExtensions; |
| 1467 #endif | 1467 #endif |
| 1468 | 1468 |
| 1469 #if ENABLE(DASHBOARD_SUPPORT) || ENABLE(DRAGGABLE_REGION) | 1469 #if ENABLE(DRAGGABLE_REGION) |
| 1470 Vector<AnnotatedRegionValue> m_annotatedRegions; | 1470 Vector<AnnotatedRegionValue> m_annotatedRegions; |
| 1471 bool m_hasAnnotatedRegions; | 1471 bool m_hasAnnotatedRegions; |
| 1472 bool m_annotatedRegionsDirty; | 1472 bool m_annotatedRegionsDirty; |
| 1473 #endif | 1473 #endif |
| 1474 | 1474 |
| 1475 HashMap<String, RefPtr<HTMLCanvasElement> > m_cssCanvasElements; | 1475 HashMap<String, RefPtr<HTMLCanvasElement> > m_cssCanvasElements; |
| 1476 | 1476 |
| 1477 bool m_createRenderers; | 1477 bool m_createRenderers; |
| 1478 bool m_inPageCache; | 1478 bool m_inPageCache; |
| 1479 Vector<IconURL> m_iconURLs; | 1479 Vector<IconURL> m_iconURLs; |
| (...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1669 trackForDebugging(); | 1669 trackForDebugging(); |
| 1670 #endif | 1670 #endif |
| 1671 InspectorCounters::incrementCounter(InspectorCounters::NodeCounter); | 1671 InspectorCounters::incrementCounter(InspectorCounters::NodeCounter); |
| 1672 } | 1672 } |
| 1673 | 1673 |
| 1674 Node* eventTargetNodeForDocument(Document*); | 1674 Node* eventTargetNodeForDocument(Document*); |
| 1675 | 1675 |
| 1676 } // namespace WebCore | 1676 } // namespace WebCore |
| 1677 | 1677 |
| 1678 #endif // Document_h | 1678 #endif // Document_h |
| OLD | NEW |