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

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

Issue 225073004: Oilpan: Completely move core/animations/ to oilpan's heap (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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 | Annotate | Revision Log
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 1358 matching lines...) Expand 10 before | Expand all | Expand 10 after
1369 OwnPtr<ElementDataCache> m_elementDataCache; 1369 OwnPtr<ElementDataCache> m_elementDataCache;
1370 1370
1371 #ifndef NDEBUG 1371 #ifndef NDEBUG
1372 bool m_didDispatchViewportPropertiesChanged; 1372 bool m_didDispatchViewportPropertiesChanged;
1373 #endif 1373 #endif
1374 1374
1375 typedef HashMap<AtomicString, OwnPtr<Locale> > LocaleIdentifierToLocaleMap; 1375 typedef HashMap<AtomicString, OwnPtr<Locale> > LocaleIdentifierToLocaleMap;
1376 LocaleIdentifierToLocaleMap m_localeCache; 1376 LocaleIdentifierToLocaleMap m_localeCache;
1377 1377
1378 OwnPtr<AnimationClock> m_animationClock; 1378 OwnPtr<AnimationClock> m_animationClock;
1379 RefPtr<DocumentTimeline> m_timeline; 1379 RefPtrWillBeMember<DocumentTimeline> m_timeline;
1380 RefPtr<DocumentTimeline> m_transitionTimeline; 1380 RefPtrWillBeMember<DocumentTimeline> m_transitionTimeline;
1381 CompositorPendingAnimations m_compositorPendingAnimations; 1381 CompositorPendingAnimations m_compositorPendingAnimations;
1382 1382
1383 RefPtrWillBeMember<Document> m_templateDocument; 1383 RefPtrWillBeMember<Document> m_templateDocument;
1384 // With Oilpan the templateDocument and the templateDocumentHost 1384 // With Oilpan the templateDocument and the templateDocumentHost
1385 // live and die together. Without Oilpan, the templateDocumentHost 1385 // live and die together. Without Oilpan, the templateDocumentHost
1386 // is a manually managed backpointer from m_templateDocument. 1386 // is a manually managed backpointer from m_templateDocument.
1387 RawPtrWillBeMember<Document> m_templateDocumentHost; 1387 RawPtrWillBeMember<Document> m_templateDocumentHost;
1388 1388
1389 Timer<Document> m_didAssociateFormControlsTimer; 1389 Timer<Document> m_didAssociateFormControlsTimer;
1390 WillBeHeapHashSet<RefPtrWillBeMember<Element> > m_associatedFormControls; 1390 WillBeHeapHashSet<RefPtrWillBeMember<Element> > m_associatedFormControls;
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
1454 inline bool Node::isDocumentNode() const 1454 inline bool Node::isDocumentNode() const
1455 { 1455 {
1456 return this == document(); 1456 return this == document();
1457 } 1457 }
1458 1458
1459 Node* eventTargetNodeForDocument(Document*); 1459 Node* eventTargetNodeForDocument(Document*);
1460 1460
1461 } // namespace WebCore 1461 } // namespace WebCore
1462 1462
1463 #endif // Document_h 1463 #endif // Document_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698