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

Side by Side Diff: Source/core/rendering/CounterNode.h

Issue 68523014: Update remaining NodeTraversal / ElementTraversal methods to take references (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix build Created 7 years, 1 month 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
« no previous file with comments | « Source/core/dom/Text.cpp ('k') | Source/core/rendering/CounterNode.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) 2005 Allan Sandfeld Jensen (kde@carewolf.com) 2 * Copyright (C) 2005 Allan Sandfeld Jensen (kde@carewolf.com)
3 * Copyright (C) 2006, 2007 Apple Inc. All rights reserved. 3 * Copyright (C) 2006, 2007 Apple Inc. All rights reserved.
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
(...skipping 24 matching lines...) Expand all
35 35
36 // Not that render tree children are often counter tree siblings due to counter scoping rules. 36 // Not that render tree children are often counter tree siblings due to counter scoping rules.
37 37
38 namespace WebCore { 38 namespace WebCore {
39 39
40 class RenderObject; 40 class RenderObject;
41 class RenderCounter; 41 class RenderCounter;
42 42
43 class CounterNode : public RefCounted<CounterNode> { 43 class CounterNode : public RefCounted<CounterNode> {
44 public: 44 public:
45 static PassRefPtr<CounterNode> create(RenderObject*, bool isReset, int value ); 45 static PassRefPtr<CounterNode> create(RenderObject&, bool isReset, int value );
46 ~CounterNode(); 46 ~CounterNode();
47 bool actsAsReset() const { return m_hasResetType || !m_parent; } 47 bool actsAsReset() const { return m_hasResetType || !m_parent; }
48 bool hasResetType() const { return m_hasResetType; } 48 bool hasResetType() const { return m_hasResetType; }
49 int value() const { return m_value; } 49 int value() const { return m_value; }
50 int countInParent() const { return m_countInParent; } 50 int countInParent() const { return m_countInParent; }
51 RenderObject* owner() const { return m_owner; } 51 RenderObject& owner() const { return m_owner; }
52 void addRenderer(RenderCounter*); 52 void addRenderer(RenderCounter*);
53 void removeRenderer(RenderCounter*); 53 void removeRenderer(RenderCounter*);
54 54
55 // Invalidates the text in the renderers of this counter, if any. 55 // Invalidates the text in the renderers of this counter, if any.
56 void resetRenderers(); 56 void resetRenderers();
57 57
58 CounterNode* parent() const { return m_parent; } 58 CounterNode* parent() const { return m_parent; }
59 CounterNode* previousSibling() const { return m_previousSibling; } 59 CounterNode* previousSibling() const { return m_previousSibling; }
60 CounterNode* nextSibling() const { return m_nextSibling; } 60 CounterNode* nextSibling() const { return m_nextSibling; }
61 CounterNode* firstChild() const { return m_firstChild; } 61 CounterNode* firstChild() const { return m_firstChild; }
62 CounterNode* lastChild() const { return m_lastChild; } 62 CounterNode* lastChild() const { return m_lastChild; }
63 CounterNode* lastDescendant() const; 63 CounterNode* lastDescendant() const;
64 CounterNode* previousInPreOrder() const; 64 CounterNode* previousInPreOrder() const;
65 CounterNode* nextInPreOrder(const CounterNode* stayWithin = 0) const; 65 CounterNode* nextInPreOrder(const CounterNode* stayWithin = 0) const;
66 CounterNode* nextInPreOrderAfterChildren(const CounterNode* stayWithin = 0) const; 66 CounterNode* nextInPreOrderAfterChildren(const CounterNode* stayWithin = 0) const;
67 67
68 void insertAfter(CounterNode* newChild, CounterNode* beforeChild, const Atom icString& identifier); 68 void insertAfter(CounterNode* newChild, CounterNode* beforeChild, const Atom icString& identifier);
69 69
70 // identifier must match the identifier of this counter. 70 // identifier must match the identifier of this counter.
71 void removeChild(CounterNode*); 71 void removeChild(CounterNode*);
72 72
73 private: 73 private:
74 CounterNode(RenderObject*, bool isReset, int value); 74 CounterNode(RenderObject&, bool isReset, int value);
75 int computeCountInParent() const; 75 int computeCountInParent() const;
76 // Invalidates the text in the renderer of this counter, if any, 76 // Invalidates the text in the renderer of this counter, if any,
77 // and in the renderers of all descendants of this counter, if any. 77 // and in the renderers of all descendants of this counter, if any.
78 void resetThisAndDescendantsRenderers(); 78 void resetThisAndDescendantsRenderers();
79 void recount(); 79 void recount();
80 80
81 bool m_hasResetType; 81 bool m_hasResetType;
82 int m_value; 82 int m_value;
83 int m_countInParent; 83 int m_countInParent;
84 RenderObject* m_owner; 84 RenderObject& m_owner;
85 RenderCounter* m_rootRenderer; 85 RenderCounter* m_rootRenderer;
86 86
87 CounterNode* m_parent; 87 CounterNode* m_parent;
88 CounterNode* m_previousSibling; 88 CounterNode* m_previousSibling;
89 CounterNode* m_nextSibling; 89 CounterNode* m_nextSibling;
90 CounterNode* m_firstChild; 90 CounterNode* m_firstChild;
91 CounterNode* m_lastChild; 91 CounterNode* m_lastChild;
92 }; 92 };
93 93
94 } // namespace WebCore 94 } // namespace WebCore
95 95
96 #ifndef NDEBUG 96 #ifndef NDEBUG
97 // Outside the WebCore namespace for ease of invocation from gdb. 97 // Outside the WebCore namespace for ease of invocation from gdb.
98 void showCounterTree(const WebCore::CounterNode*); 98 void showCounterTree(const WebCore::CounterNode*);
99 #endif 99 #endif
100 100
101 #endif // CounterNode_h 101 #endif // CounterNode_h
OLDNEW
« no previous file with comments | « Source/core/dom/Text.cpp ('k') | Source/core/rendering/CounterNode.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698