| 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 980 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 991 bool hasActiveParser(); | 991 bool hasActiveParser(); |
| 992 unsigned activeParserCount() { return m_activeParserCount; } | 992 unsigned activeParserCount() { return m_activeParserCount; } |
| 993 void incrementActiveParserCount() { ++m_activeParserCount; } | 993 void incrementActiveParserCount() { ++m_activeParserCount; } |
| 994 void decrementActiveParserCount(); | 994 void decrementActiveParserCount(); |
| 995 | 995 |
| 996 void setContextFeatures(ContextFeatures&); | 996 void setContextFeatures(ContextFeatures&); |
| 997 ContextFeatures& contextFeatures() const { return *m_contextFeatures; } | 997 ContextFeatures& contextFeatures() const { return *m_contextFeatures; } |
| 998 | 998 |
| 999 ElementDataCache* elementDataCache() { return m_elementDataCache.get(); } | 999 ElementDataCache* elementDataCache() { return m_elementDataCache.get(); } |
| 1000 | 1000 |
| 1001 void didAddPendingResource(); |
| 1002 void didRemovePendingResource(); |
| 1001 void didLoadAllScriptBlockingResources(); | 1003 void didLoadAllScriptBlockingResources(); |
| 1002 void didRemoveAllPendingStylesheet(); | 1004 void didRemoveAllPendingStylesheet(); |
| 1003 void setNeedsNotifyRemoveAllPendingStylesheet() { m_needsNotifyRemoveAllPend
ingStylesheet = true; } | 1005 void setNeedsNotifyRemoveAllPendingStylesheet() { m_needsNotifyRemoveAllPend
ingStylesheet = true; } |
| 1004 void clearStyleResolver(); | 1006 void clearStyleResolver(); |
| 1005 | 1007 |
| 1006 bool inStyleRecalc() const { return m_lifecycle.state() == DocumentLifecycle
::InStyleRecalc; } | 1008 bool inStyleRecalc() const { return m_lifecycle.state() == DocumentLifecycle
::InStyleRecalc; } |
| 1007 | 1009 |
| 1008 // Return a Locale for the default locale if the argument is null or empty. | 1010 // Return a Locale for the default locale if the argument is null or empty. |
| 1009 Locale& getCachedLocale(const AtomicString& locale = nullAtom); | 1011 Locale& getCachedLocale(const AtomicString& locale = nullAtom); |
| 1010 | 1012 |
| (...skipping 396 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1407 inline bool Node::isDocumentNode() const | 1409 inline bool Node::isDocumentNode() const |
| 1408 { | 1410 { |
| 1409 return this == document(); | 1411 return this == document(); |
| 1410 } | 1412 } |
| 1411 | 1413 |
| 1412 Node* eventTargetNodeForDocument(Document*); | 1414 Node* eventTargetNodeForDocument(Document*); |
| 1413 | 1415 |
| 1414 } // namespace WebCore | 1416 } // namespace WebCore |
| 1415 | 1417 |
| 1416 #endif // Document_h | 1418 #endif // Document_h |
| OLD | NEW |