Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(115)

Side by Side Diff: Source/core/dom/Document.h

Issue 1120003002: [Oilpan] Migrate most classes under core/animations to Oilpan heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Intentional nullptr access Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 1376 matching lines...) Expand 10 before | Expand all | Expand 10 after
1387 1387
1388 void elementDataCacheClearTimerFired(Timer<Document>*); 1388 void elementDataCacheClearTimerFired(Timer<Document>*);
1389 Timer<Document> m_elementDataCacheClearTimer; 1389 Timer<Document> m_elementDataCacheClearTimer;
1390 1390
1391 OwnPtrWillBeMember<ElementDataCache> m_elementDataCache; 1391 OwnPtrWillBeMember<ElementDataCache> m_elementDataCache;
1392 1392
1393 using LocaleIdentifierToLocaleMap = HashMap<AtomicString, OwnPtr<Locale>>; 1393 using LocaleIdentifierToLocaleMap = HashMap<AtomicString, OwnPtr<Locale>>;
1394 LocaleIdentifierToLocaleMap m_localeCache; 1394 LocaleIdentifierToLocaleMap m_localeCache;
1395 1395
1396 AnimationClock m_animationClock; 1396 AnimationClock m_animationClock;
1397 RefPtrWillBeMember<AnimationTimeline> m_timeline; 1397 PersistentWillBeMember<AnimationTimeline> m_timeline;
1398 CompositorPendingAnimations m_compositorPendingAnimations; 1398 CompositorPendingAnimations m_compositorPendingAnimations;
1399 1399
1400 RefPtrWillBeMember<Document> m_templateDocument; 1400 RefPtrWillBeMember<Document> m_templateDocument;
1401 // With Oilpan the templateDocument and the templateDocumentHost 1401 // With Oilpan the templateDocument and the templateDocumentHost
1402 // live and die together. Without Oilpan, the templateDocumentHost 1402 // live and die together. Without Oilpan, the templateDocumentHost
1403 // is a manually managed backpointer from m_templateDocument. 1403 // is a manually managed backpointer from m_templateDocument.
1404 RawPtrWillBeMember<Document> m_templateDocumentHost; 1404 RawPtrWillBeMember<Document> m_templateDocumentHost;
1405 1405
1406 Timer<Document> m_didAssociateFormControlsTimer; 1406 Timer<Document> m_didAssociateFormControlsTimer;
1407 WillBeHeapHashSet<RefPtrWillBeMember<Element>> m_associatedFormControls; 1407 WillBeHeapHashSet<RefPtrWillBeMember<Element>> m_associatedFormControls;
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
1465 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); 1465 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true);
1466 1466
1467 } // namespace blink 1467 } // namespace blink
1468 1468
1469 #ifndef NDEBUG 1469 #ifndef NDEBUG
1470 // Outside the WebCore namespace for ease of invocation from gdb. 1470 // Outside the WebCore namespace for ease of invocation from gdb.
1471 CORE_EXPORT void showLiveDocumentInstances(); 1471 CORE_EXPORT void showLiveDocumentInstances();
1472 #endif 1472 #endif
1473 1473
1474 #endif // Document_h 1474 #endif // Document_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698