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

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

Issue 333413006: Prepare SVGElement references in Document for oilpan (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: add missing > Created 6 years, 6 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
« no previous file with comments | « no previous file | Source/core/dom/Document.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1395 matching lines...) Expand 10 before | Expand all | Expand 10 after
1406 1406
1407 RefPtrWillBeMember<Document> m_templateDocument; 1407 RefPtrWillBeMember<Document> m_templateDocument;
1408 // With Oilpan the templateDocument and the templateDocumentHost 1408 // With Oilpan the templateDocument and the templateDocumentHost
1409 // live and die together. Without Oilpan, the templateDocumentHost 1409 // live and die together. Without Oilpan, the templateDocumentHost
1410 // is a manually managed backpointer from m_templateDocument. 1410 // is a manually managed backpointer from m_templateDocument.
1411 RawPtrWillBeMember<Document> m_templateDocumentHost; 1411 RawPtrWillBeMember<Document> m_templateDocumentHost;
1412 1412
1413 Timer<Document> m_didAssociateFormControlsTimer; 1413 Timer<Document> m_didAssociateFormControlsTimer;
1414 WillBeHeapHashSet<RefPtrWillBeMember<Element> > m_associatedFormControls; 1414 WillBeHeapHashSet<RefPtrWillBeMember<Element> > m_associatedFormControls;
1415 1415
1416 HashSet<SVGUseElement*> m_useElementsNeedingUpdate; 1416 WillBeHeapHashSet<RawPtrWillBeMember<SVGUseElement> > m_useElementsNeedingUp date;
1417 HashSet<Element*> m_layerUpdateSVGFilterElements; 1417 WillBeHeapHashSet<RawPtrWillBeMember<Element> > m_layerUpdateSVGFilterElemen ts;
haraken 2014/06/17 01:09:29 These elements are guaranteed to exist in the same
1418 1418
1419 bool m_hasViewportUnits; 1419 bool m_hasViewportUnits;
1420 1420
1421 typedef WillBeHeapHashSet<RawPtrWillBeWeakMember<DocumentVisibilityObserver> > DocumentVisibilityObserverSet; 1421 typedef WillBeHeapHashSet<RawPtrWillBeWeakMember<DocumentVisibilityObserver> > DocumentVisibilityObserverSet;
1422 DocumentVisibilityObserverSet m_visibilityObservers; 1422 DocumentVisibilityObserverSet m_visibilityObservers;
1423 1423
1424 int m_styleRecalcElementCounter; 1424 int m_styleRecalcElementCounter;
1425 }; 1425 };
1426 1426
1427 inline bool Document::shouldOverrideLegacyDescription(ViewportDescription::Type origin) 1427 inline bool Document::shouldOverrideLegacyDescription(ViewportDescription::Type origin)
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
1461 inline bool Node::isDocumentNode() const 1461 inline bool Node::isDocumentNode() const
1462 { 1462 {
1463 return this == document(); 1463 return this == document();
1464 } 1464 }
1465 1465
1466 Node* eventTargetNodeForDocument(Document*); 1466 Node* eventTargetNodeForDocument(Document*);
1467 1467
1468 } // namespace WebCore 1468 } // namespace WebCore
1469 1469
1470 #endif // Document_h 1470 #endif // Document_h
OLDNEW
« no previous file with comments | « no previous file | Source/core/dom/Document.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698