| 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 1348 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1359 bool m_writeRecursionIsTooDeep; | 1359 bool m_writeRecursionIsTooDeep; |
| 1360 unsigned m_writeRecursionDepth; | 1360 unsigned m_writeRecursionDepth; |
| 1361 | 1361 |
| 1362 OwnPtr<TouchEventTargetSet> m_touchEventTargets; | 1362 OwnPtr<TouchEventTargetSet> m_touchEventTargets; |
| 1363 | 1363 |
| 1364 RefPtr<ScriptedAnimationController> m_scriptedAnimationController; | 1364 RefPtr<ScriptedAnimationController> m_scriptedAnimationController; |
| 1365 OwnPtr<MainThreadTaskRunner> m_taskRunner; | 1365 OwnPtr<MainThreadTaskRunner> m_taskRunner; |
| 1366 OwnPtr<TextAutosizer> m_textAutosizer; | 1366 OwnPtr<TextAutosizer> m_textAutosizer; |
| 1367 OwnPtr<FastTextAutosizer> m_fastTextAutosizer; | 1367 OwnPtr<FastTextAutosizer> m_fastTextAutosizer; |
| 1368 | 1368 |
| 1369 RefPtr<CustomElementRegistrationContext> m_registrationContext; | 1369 RefPtrWillBeMember<CustomElementRegistrationContext> m_registrationContext; |
| 1370 | 1370 |
| 1371 void elementDataCacheClearTimerFired(Timer<Document>*); | 1371 void elementDataCacheClearTimerFired(Timer<Document>*); |
| 1372 Timer<Document> m_elementDataCacheClearTimer; | 1372 Timer<Document> m_elementDataCacheClearTimer; |
| 1373 | 1373 |
| 1374 OwnPtr<ElementDataCache> m_elementDataCache; | 1374 OwnPtr<ElementDataCache> m_elementDataCache; |
| 1375 | 1375 |
| 1376 #ifndef NDEBUG | 1376 #ifndef NDEBUG |
| 1377 bool m_didDispatchViewportPropertiesChanged; | 1377 bool m_didDispatchViewportPropertiesChanged; |
| 1378 #endif | 1378 #endif |
| 1379 | 1379 |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1441 inline bool Node::isDocumentNode() const | 1441 inline bool Node::isDocumentNode() const |
| 1442 { | 1442 { |
| 1443 return this == document(); | 1443 return this == document(); |
| 1444 } | 1444 } |
| 1445 | 1445 |
| 1446 Node* eventTargetNodeForDocument(Document*); | 1446 Node* eventTargetNodeForDocument(Document*); |
| 1447 | 1447 |
| 1448 } // namespace WebCore | 1448 } // namespace WebCore |
| 1449 | 1449 |
| 1450 #endif // Document_h | 1450 #endif // Document_h |
| OLD | NEW |