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