Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef MarkerPseudoElement_h | |
| 6 #define MarkerPseudoElement_h | |
| 7 | |
| 8 #include "core/dom/PseudoElement.h" | |
| 9 | |
| 10 namespace blink { | |
| 11 | |
| 12 class LayoutBlockFlow; | |
| 13 class LayoutListMarker; | |
| 14 | |
| 15 class MarkerPseudoElement final : public PseudoElement { | |
| 16 WTF_MAKE_NONCOPYABLE(MarkerPseudoElement); | |
| 17 public: | |
| 18 static PassRefPtrWillBeRawPtr<MarkerPseudoElement> create(Element* parent) | |
| 19 { | |
| 20 return adoptRefWillBeNoop(new MarkerPseudoElement(parent)); | |
| 21 } | |
| 22 | |
| 23 virtual ~MarkerPseudoElement(); | |
| 24 | |
| 25 void attach(const AttachContext& = AttachContext()) override; | |
| 26 | |
| 27 LayoutObject* createLayoutObject(const ComputedStyle&) override; | |
| 28 | |
| 29 // FIXME: Make these private and file static when old code is removed. | |
| 30 static LayoutObject* parentOfFirstLineBox(LayoutBlockFlow* curr, const Layou tObject* marker); | |
| 31 static LayoutObject* firstNonMarkerChild(LayoutObject* parent); | |
| 32 | |
| 33 static PassRefPtr<ComputedStyle> styleForListMarkerLayoutObject(LayoutObject &, const ComputedStyle*); | |
| 34 | |
| 35 void attachListMarkerLayoutObject(); | |
|
esprehn
2015/04/22 07:45:45
attachListMarker(), no need for LayoutObject in th
dsinclair
2015/04/22 20:00:38
Done.
| |
| 36 | |
| 37 private: | |
| 38 explicit MarkerPseudoElement(Element*); | |
| 39 | |
| 40 PassRefPtr<ComputedStyle> customStyleForLayoutObject(); | |
| 41 | |
| 42 void didRecalcStyle(StyleRecalcChange) override; | |
| 43 }; | |
| 44 | |
| 45 DEFINE_ELEMENT_TYPE_CASTS(MarkerPseudoElement, isMarkerPseudoElement()); | |
| 46 | |
| 47 } // namespace blink | |
| 48 | |
| 49 #endif // MarkerPseudoElement_h | |
| OLD | NEW |