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

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

Issue 977113003: Rename renderer() to layoutObject(). (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase to master Created 5 years, 9 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 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r ights reserved. 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r ights reserved.
6 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/) 6 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/)
7 * Copyright (C) 2011 Google Inc. All rights reserved. 7 * Copyright (C) 2011 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 29 matching lines...) Expand all
40 class LayoutStyle; 40 class LayoutStyle;
41 41
42 template <typename NodeType> 42 template <typename NodeType>
43 class LayoutTreeBuilder { 43 class LayoutTreeBuilder {
44 STACK_ALLOCATED(); 44 STACK_ALLOCATED();
45 protected: 45 protected:
46 LayoutTreeBuilder(NodeType& node, LayoutObject* renderingParent) 46 LayoutTreeBuilder(NodeType& node, LayoutObject* renderingParent)
47 : m_node(node) 47 : m_node(node)
48 , m_renderingParent(renderingParent) 48 , m_renderingParent(renderingParent)
49 { 49 {
50 ASSERT(!node.renderer()); 50 ASSERT(!node.layoutObject());
51 ASSERT(node.needsAttach()); 51 ASSERT(node.needsAttach());
52 ASSERT(node.document().inStyleRecalc()); 52 ASSERT(node.document().inStyleRecalc());
53 53
54 // FIXME: We should be able to ASSERT(node->inActiveDocument()) but chil drenChanged is called 54 // FIXME: We should be able to ASSERT(node->inActiveDocument()) but chil drenChanged is called
55 // before ChildNodeInsertionNotifier in ContainerNode's methods and some implementations 55 // before ChildNodeInsertionNotifier in ContainerNode's methods and some implementations
56 // will trigger a layout inside childrenChanged. 56 // will trigger a layout inside childrenChanged.
57 // Mainly HTMLTextAreaElement::childrenChanged calls HTMLTextFormControl Element::setSelectionRange 57 // Mainly HTMLTextAreaElement::childrenChanged calls HTMLTextFormControl Element::setSelectionRange
58 // which does an updateLayoutIgnorePendingStylesheets. 58 // which does an updateLayoutIgnorePendingStylesheets.
59 } 59 }
60 60
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 public: 99 public:
100 LayoutTreeBuilderForText(Text& text, LayoutObject* renderingParent) 100 LayoutTreeBuilderForText(Text& text, LayoutObject* renderingParent)
101 : LayoutTreeBuilder(text, renderingParent) { } 101 : LayoutTreeBuilder(text, renderingParent) { }
102 102
103 void createRenderer(); 103 void createRenderer();
104 }; 104 };
105 105
106 } // namespace blink 106 } // namespace blink
107 107
108 #endif 108 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698