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: third_party/WebKit/Source/core/layout/LayoutObject.h

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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) 2000 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org)
3 * (C) 2000 Antti Koivisto (koivisto@kde.org) 3 * (C) 2000 Antti Koivisto (koivisto@kde.org)
4 * (C) 2000 Dirk Mueller (mueller@kde.org) 4 * (C) 2000 Dirk Mueller (mueller@kde.org)
5 * (C) 2004 Allan Sandfeld Jensen (kde@carewolf.com) 5 * (C) 2004 Allan Sandfeld Jensen (kde@carewolf.com)
6 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2012 Apple Inc. All r ights reserved. 6 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2012 Apple Inc. All r ights reserved.
7 * Copyright (C) 2009 Google Inc. All rights reserved. 7 * Copyright (C) 2009 Google Inc. All rights reserved.
8 * 8 *
9 * This library is free software; you can redistribute it and/or 9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Library General Public 10 * modify it under the terms of the GNU Library General Public
(...skipping 1575 matching lines...) Expand 10 before | Expand all | Expand 10 after
1586 static bool isAllowedToModifyLayoutTreeStructure(Document&); 1586 static bool isAllowedToModifyLayoutTreeStructure(Document&);
1587 1587
1588 // The passed rect is mutated into the coordinate space of the paint invalid ation container. 1588 // The passed rect is mutated into the coordinate space of the paint invalid ation container.
1589 const LayoutBoxModelObject* invalidatePaintRectangleInternal(const LayoutRec t&) const; 1589 const LayoutBoxModelObject* invalidatePaintRectangleInternal(const LayoutRec t&) const;
1590 1590
1591 static LayoutPoint uninitializedPaintOffset() { return LayoutPoint(LayoutUni t::max(), LayoutUnit::max()); } 1591 static LayoutPoint uninitializedPaintOffset() { return LayoutPoint(LayoutUni t::max(), LayoutUnit::max()); }
1592 1592
1593 RefPtr<ComputedStyle> m_style; 1593 RefPtr<ComputedStyle> m_style;
1594 1594
1595 // Oilpan: This untraced pointer to the owning Node is considered safe. 1595 // Oilpan: This untraced pointer to the owning Node is considered safe.
1596 RawPtrWillBeUntracedMember<Node> m_node; 1596 UntracedMember<Node> m_node;
1597 1597
1598 LayoutObject* m_parent; 1598 LayoutObject* m_parent;
1599 LayoutObject* m_previous; 1599 LayoutObject* m_previous;
1600 LayoutObject* m_next; 1600 LayoutObject* m_next;
1601 1601
1602 #if ENABLE(ASSERT) 1602 #if ENABLE(ASSERT)
1603 unsigned m_hasAXObject : 1; 1603 unsigned m_hasAXObject : 1;
1604 unsigned m_setNeedsLayoutForbidden : 1; 1604 unsigned m_setNeedsLayoutForbidden : 1;
1605 #endif 1605 #endif
1606 1606
(...skipping 502 matching lines...) Expand 10 before | Expand all | Expand 10 after
2109 void showTree(const blink::LayoutObject*); 2109 void showTree(const blink::LayoutObject*);
2110 void showLineTree(const blink::LayoutObject*); 2110 void showLineTree(const blink::LayoutObject*);
2111 void showLayoutTree(const blink::LayoutObject* object1); 2111 void showLayoutTree(const blink::LayoutObject* object1);
2112 // We don't make object2 an optional parameter so that showLayoutTree 2112 // We don't make object2 an optional parameter so that showLayoutTree
2113 // can be called from gdb easily. 2113 // can be called from gdb easily.
2114 void showLayoutTree(const blink::LayoutObject* object1, const blink::LayoutObjec t* object2); 2114 void showLayoutTree(const blink::LayoutObject* object1, const blink::LayoutObjec t* object2);
2115 2115
2116 #endif 2116 #endif
2117 2117
2118 #endif // LayoutObject_h 2118 #endif // LayoutObject_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698