| 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 1340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1351 | 1351 |
| 1352 void elementDataCacheClearTimerFired(Timer<Document>*); | 1352 void elementDataCacheClearTimerFired(Timer<Document>*); |
| 1353 Timer<Document> m_elementDataCacheClearTimer; | 1353 Timer<Document> m_elementDataCacheClearTimer; |
| 1354 | 1354 |
| 1355 OwnPtrWillBeMember<ElementDataCache> m_elementDataCache; | 1355 OwnPtrWillBeMember<ElementDataCache> m_elementDataCache; |
| 1356 | 1356 |
| 1357 using LocaleIdentifierToLocaleMap = HashMap<AtomicString, OwnPtr<Locale>>; | 1357 using LocaleIdentifierToLocaleMap = HashMap<AtomicString, OwnPtr<Locale>>; |
| 1358 LocaleIdentifierToLocaleMap m_localeCache; | 1358 LocaleIdentifierToLocaleMap m_localeCache; |
| 1359 | 1359 |
| 1360 AnimationClock m_animationClock; | 1360 AnimationClock m_animationClock; |
| 1361 RefPtrWillBeMember<AnimationTimeline> m_timeline; | 1361 PersistentWillBeMember<AnimationTimeline> m_timeline; |
| 1362 CompositorPendingAnimations m_compositorPendingAnimations; | 1362 CompositorPendingAnimations m_compositorPendingAnimations; |
| 1363 | 1363 |
| 1364 RefPtrWillBeMember<Document> m_templateDocument; | 1364 RefPtrWillBeMember<Document> m_templateDocument; |
| 1365 // With Oilpan the templateDocument and the templateDocumentHost | 1365 // With Oilpan the templateDocument and the templateDocumentHost |
| 1366 // live and die together. Without Oilpan, the templateDocumentHost | 1366 // live and die together. Without Oilpan, the templateDocumentHost |
| 1367 // is a manually managed backpointer from m_templateDocument. | 1367 // is a manually managed backpointer from m_templateDocument. |
| 1368 RawPtrWillBeMember<Document> m_templateDocumentHost; | 1368 RawPtrWillBeMember<Document> m_templateDocumentHost; |
| 1369 | 1369 |
| 1370 Timer<Document> m_didAssociateFormControlsTimer; | 1370 Timer<Document> m_didAssociateFormControlsTimer; |
| 1371 WillBeHeapHashSet<RefPtrWillBeMember<Element>> m_associatedFormControls; | 1371 WillBeHeapHashSet<RefPtrWillBeMember<Element>> m_associatedFormControls; |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1433 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); | 1433 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); |
| 1434 | 1434 |
| 1435 } // namespace blink | 1435 } // namespace blink |
| 1436 | 1436 |
| 1437 #ifndef NDEBUG | 1437 #ifndef NDEBUG |
| 1438 // Outside the WebCore namespace for ease of invocation from gdb. | 1438 // Outside the WebCore namespace for ease of invocation from gdb. |
| 1439 CORE_EXPORT void showLiveDocumentInstances(); | 1439 CORE_EXPORT void showLiveDocumentInstances(); |
| 1440 #endif | 1440 #endif |
| 1441 | 1441 |
| 1442 #endif // Document_h | 1442 #endif // Document_h |
| OLD | NEW |