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

Side by Side Diff: third_party/WebKit/Source/core/layout/LayoutObject.h

Issue 1852663002: Oilpan: Remove WillBe types (part 9) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 1633 matching lines...) Expand 10 before | Expand all | Expand 10 after
1644 static bool isAllowedToModifyLayoutTreeStructure(Document&); 1644 static bool isAllowedToModifyLayoutTreeStructure(Document&);
1645 1645
1646 // The passed rect is mutated into the coordinate space of the paint invalid ation container. 1646 // The passed rect is mutated into the coordinate space of the paint invalid ation container.
1647 const LayoutBoxModelObject* invalidatePaintRectangleInternal(const LayoutRec t&) const; 1647 const LayoutBoxModelObject* invalidatePaintRectangleInternal(const LayoutRec t&) const;
1648 1648
1649 static LayoutPoint uninitializedPaintOffset() { return LayoutPoint(LayoutUni t::max(), LayoutUnit::max()); } 1649 static LayoutPoint uninitializedPaintOffset() { return LayoutPoint(LayoutUni t::max(), LayoutUnit::max()); }
1650 1650
1651 RefPtr<ComputedStyle> m_style; 1651 RefPtr<ComputedStyle> m_style;
1652 1652
1653 // Oilpan: This untraced pointer to the owning Node is considered safe. 1653 // Oilpan: This untraced pointer to the owning Node is considered safe.
1654 RawPtrWillBeUntracedMember<Node> m_node; 1654 UntracedMember<Node> m_node;
1655 1655
1656 LayoutObject* m_parent; 1656 LayoutObject* m_parent;
1657 LayoutObject* m_previous; 1657 LayoutObject* m_previous;
1658 LayoutObject* m_next; 1658 LayoutObject* m_next;
1659 1659
1660 #if ENABLE(ASSERT) 1660 #if ENABLE(ASSERT)
1661 unsigned m_hasAXObject : 1; 1661 unsigned m_hasAXObject : 1;
1662 unsigned m_setNeedsLayoutForbidden : 1; 1662 unsigned m_setNeedsLayoutForbidden : 1;
1663 #endif 1663 #endif
1664 1664
(...skipping 502 matching lines...) Expand 10 before | Expand all | Expand 10 after
2167 void showTree(const blink::LayoutObject*); 2167 void showTree(const blink::LayoutObject*);
2168 void showLineTree(const blink::LayoutObject*); 2168 void showLineTree(const blink::LayoutObject*);
2169 void showLayoutTree(const blink::LayoutObject* object1); 2169 void showLayoutTree(const blink::LayoutObject* object1);
2170 // We don't make object2 an optional parameter so that showLayoutTree 2170 // We don't make object2 an optional parameter so that showLayoutTree
2171 // can be called from gdb easily. 2171 // can be called from gdb easily.
2172 void showLayoutTree(const blink::LayoutObject* object1, const blink::LayoutObjec t* object2); 2172 void showLayoutTree(const blink::LayoutObject* object1, const blink::LayoutObjec t* object2);
2173 2173
2174 #endif 2174 #endif
2175 2175
2176 #endif // LayoutObject_h 2176 #endif // LayoutObject_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/layout/LayoutMenuList.cpp ('k') | third_party/WebKit/Source/core/layout/LayoutPart.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698