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 1082 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1093 void adjustFloatRectForScrollAndAbsoluteZoom(FloatRect&, RenderObject*); | 1093 void adjustFloatRectForScrollAndAbsoluteZoom(FloatRect&, RenderObject*); |
1094 | 1094 |
1095 bool hasActiveParser(); | 1095 bool hasActiveParser(); |
1096 unsigned activeParserCount() { return m_activeParserCount; } | 1096 unsigned activeParserCount() { return m_activeParserCount; } |
1097 void incrementActiveParserCount() { ++m_activeParserCount; } | 1097 void incrementActiveParserCount() { ++m_activeParserCount; } |
1098 void decrementActiveParserCount(); | 1098 void decrementActiveParserCount(); |
1099 | 1099 |
1100 void setContextFeatures(PassRefPtr<ContextFeatures>); | 1100 void setContextFeatures(PassRefPtr<ContextFeatures>); |
1101 ContextFeatures* contextFeatures() { return m_contextFeatures.get(); } | 1101 ContextFeatures* contextFeatures() { return m_contextFeatures.get(); } |
1102 | 1102 |
1103 virtual void reportMemoryUsage(MemoryObjectInfo*) const OVERRIDE; | |
1104 | |
1105 DocumentSharedObjectPool* sharedObjectPool() { return m_sharedObjectPool.get
(); } | 1103 DocumentSharedObjectPool* sharedObjectPool() { return m_sharedObjectPool.get
(); } |
1106 | 1104 |
1107 void didRemoveAllPendingStylesheet(); | 1105 void didRemoveAllPendingStylesheet(); |
1108 void setNeedsNotifyRemoveAllPendingStylesheet() { m_needsNotifyRemoveAllPend
ingStylesheet = true; } | 1106 void setNeedsNotifyRemoveAllPendingStylesheet() { m_needsNotifyRemoveAllPend
ingStylesheet = true; } |
1109 void clearStyleResolver(); | 1107 void clearStyleResolver(); |
1110 void notifySeamlessChildDocumentsOfStylesheetUpdate() const; | 1108 void notifySeamlessChildDocumentsOfStylesheetUpdate() const; |
1111 | 1109 |
1112 bool inStyleRecalc() { return m_inStyleRecalc; } | 1110 bool inStyleRecalc() { return m_inStyleRecalc; } |
1113 | 1111 |
1114 // Return a Locale for the default locale if the argument is null or empty. | 1112 // Return a Locale for the default locale if the argument is null or empty. |
(...skipping 433 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1548 trackForDebugging(); | 1546 trackForDebugging(); |
1549 #endif | 1547 #endif |
1550 InspectorCounters::incrementCounter(InspectorCounters::NodeCounter); | 1548 InspectorCounters::incrementCounter(InspectorCounters::NodeCounter); |
1551 } | 1549 } |
1552 | 1550 |
1553 Node* eventTargetNodeForDocument(Document*); | 1551 Node* eventTargetNodeForDocument(Document*); |
1554 | 1552 |
1555 } // namespace WebCore | 1553 } // namespace WebCore |
1556 | 1554 |
1557 #endif // Document_h | 1555 #endif // Document_h |
OLD | NEW |