Index: Source/core/dom/PseudoElement.h |
diff --git a/Source/core/dom/PseudoElement.h b/Source/core/dom/PseudoElement.h |
index 560d9f58daafe304c64e38c29f9b1e1175c16af7..4c2e377e95439a39ef2dcde2acdf484f45608138 100644 |
--- a/Source/core/dom/PseudoElement.h |
+++ b/Source/core/dom/PseudoElement.h |
@@ -28,7 +28,7 @@ |
#define PseudoElement_h |
#include "core/dom/Element.h" |
-#include "core/layout/style/LayoutStyle.h" |
+#include "core/layout/style/ComputedStyle.h" |
namespace blink { |
@@ -36,9 +36,9 @@ class PseudoElement : public Element { |
public: |
static PassRefPtrWillBeRawPtr<PseudoElement> create(Element* parent, PseudoId); |
- virtual PassRefPtr<LayoutStyle> customStyleForLayoutObject() override; |
+ virtual PassRefPtr<ComputedStyle> customStyleForLayoutObject() override; |
virtual void attach(const AttachContext& = AttachContext()) override; |
- virtual bool layoutObjectIsNeeded(const LayoutStyle&) override; |
+ virtual bool layoutObjectIsNeeded(const ComputedStyle&) override; |
virtual bool canStartSelection() const override { return false; } |
virtual bool canContainRangeEndPoint() const override { return false; } |
@@ -59,7 +59,7 @@ private: |
const QualifiedName& pseudoElementTagName(); |
-inline bool pseudoElementRendererIsNeeded(const LayoutStyle* style) |
+inline bool pseudoElementRendererIsNeeded(const ComputedStyle* style) |
{ |
if (!style) |
return false; |