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

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, 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 1630 matching lines...) Expand 10 before | Expand all | Expand 10 after
1641 static bool isAllowedToModifyLayoutTreeStructure(Document&); 1641 static bool isAllowedToModifyLayoutTreeStructure(Document&);
1642 1642
1643 // The passed rect is mutated into the coordinate space of the paint invalid ation container. 1643 // The passed rect is mutated into the coordinate space of the paint invalid ation container.
1644 const LayoutBoxModelObject* invalidatePaintRectangleInternal(const LayoutRec t&) const; 1644 const LayoutBoxModelObject* invalidatePaintRectangleInternal(const LayoutRec t&) const;
1645 1645
1646 static LayoutPoint uninitializedPaintOffset() { return LayoutPoint(LayoutUni t::max(), LayoutUnit::max()); } 1646 static LayoutPoint uninitializedPaintOffset() { return LayoutPoint(LayoutUni t::max(), LayoutUnit::max()); }
1647 1647
1648 RefPtr<ComputedStyle> m_style; 1648 RefPtr<ComputedStyle> m_style;
1649 1649
1650 // Oilpan: This untraced pointer to the owning Node is considered safe. 1650 // Oilpan: This untraced pointer to the owning Node is considered safe.
1651 RawPtrWillBeUntracedMember<Node> m_node; 1651 UntracedMember<Node> m_node;
1652 1652
1653 LayoutObject* m_parent; 1653 LayoutObject* m_parent;
1654 LayoutObject* m_previous; 1654 LayoutObject* m_previous;
1655 LayoutObject* m_next; 1655 LayoutObject* m_next;
1656 1656
1657 #if ENABLE(ASSERT) 1657 #if ENABLE(ASSERT)
1658 unsigned m_hasAXObject : 1; 1658 unsigned m_hasAXObject : 1;
1659 unsigned m_setNeedsLayoutForbidden : 1; 1659 unsigned m_setNeedsLayoutForbidden : 1;
1660 #endif 1660 #endif
1661 1661
(...skipping 502 matching lines...) Expand 10 before | Expand all | Expand 10 after
2164 void showTree(const blink::LayoutObject*); 2164 void showTree(const blink::LayoutObject*);
2165 void showLineTree(const blink::LayoutObject*); 2165 void showLineTree(const blink::LayoutObject*);
2166 void showLayoutTree(const blink::LayoutObject* object1); 2166 void showLayoutTree(const blink::LayoutObject* object1);
2167 // We don't make object2 an optional parameter so that showLayoutTree 2167 // We don't make object2 an optional parameter so that showLayoutTree
2168 // can be called from gdb easily. 2168 // can be called from gdb easily.
2169 void showLayoutTree(const blink::LayoutObject* object1, const blink::LayoutObjec t* object2); 2169 void showLayoutTree(const blink::LayoutObject* object1, const blink::LayoutObjec t* object2);
2170 2170
2171 #endif 2171 #endif
2172 2172
2173 #endif // LayoutObject_h 2173 #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