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

Side by Side Diff: sky/engine/core/dom/shadow/InsertionPoint.h

Issue 708913002: Remove rendererIsNeeded. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 Node* at(size_t index) const { return m_distribution.at(index).get(); } 64 Node* at(size_t index) const { return m_distribution.at(index).get(); }
65 Node* first() const { return m_distribution.isEmpty() ? 0 : m_distribution.f irst().get(); } 65 Node* first() const { return m_distribution.isEmpty() ? 0 : m_distribution.f irst().get(); }
66 Node* last() const { return m_distribution.isEmpty() ? 0 : m_distribution.la st().get(); } 66 Node* last() const { return m_distribution.isEmpty() ? 0 : m_distribution.la st().get(); }
67 Node* nextTo(const Node* node) const { return m_distribution.nextTo(node); } 67 Node* nextTo(const Node* node) const { return m_distribution.nextTo(node); }
68 Node* previousTo(const Node* node) const { return m_distribution.previousTo( node); } 68 Node* previousTo(const Node* node) const { return m_distribution.previousTo( node); }
69 69
70 void willRecalcStyle(StyleRecalcChange); 70 void willRecalcStyle(StyleRecalcChange);
71 71
72 protected: 72 protected:
73 InsertionPoint(const QualifiedName&, Document&); 73 InsertionPoint(const QualifiedName&, Document&);
74 virtual bool rendererIsNeeded(const RenderStyle&) override;
75 virtual void childrenChanged(const ChildrenChange&) override; 74 virtual void childrenChanged(const ChildrenChange&) override;
76 virtual InsertionNotificationRequest insertedInto(ContainerNode*) override; 75 virtual InsertionNotificationRequest insertedInto(ContainerNode*) override;
77 virtual void removedFrom(ContainerNode*) override; 76 virtual void removedFrom(ContainerNode*) override;
78 77
79 private: 78 private:
80 bool isInsertionPoint() const = delete; // This will catch anyone doing an u nnecessary check. 79 bool isInsertionPoint() const = delete; // This will catch anyone doing an u nnecessary check.
81 80
82 ContentDistribution m_distribution; 81 ContentDistribution m_distribution;
83 bool m_registeredWithShadowRoot; 82 bool m_registeredWithShadowRoot;
84 }; 83 };
(...skipping 26 matching lines...) Expand all
111 return 0; 110 return 0;
112 } 111 }
113 112
114 const InsertionPoint* resolveReprojection(const Node*); 113 const InsertionPoint* resolveReprojection(const Node*);
115 114
116 void collectDestinationInsertionPoints(const Node&, Vector<RawPtr<InsertionPoint >, 8>& results); 115 void collectDestinationInsertionPoints(const Node&, Vector<RawPtr<InsertionPoint >, 8>& results);
117 116
118 } // namespace blink 117 } // namespace blink
119 118
120 #endif // InsertionPoint_h 119 #endif // InsertionPoint_h
OLDNEW
« no previous file with comments | « sky/engine/core/dom/RenderTreeBuilder.cpp ('k') | sky/engine/core/dom/shadow/InsertionPoint.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698