| Index: third_party/WebKit/Source/core/dom/shadow/ElementShadow.h
|
| diff --git a/third_party/WebKit/Source/core/dom/shadow/ElementShadow.h b/third_party/WebKit/Source/core/dom/shadow/ElementShadow.h
|
| index 5d3b199c6732dbd7107468bd9b0b36ef5e854b4f..fb522ecfbdb9225af83e8290bd6e62e1061c3b36 100644
|
| --- a/third_party/WebKit/Source/core/dom/shadow/ElementShadow.h
|
| +++ b/third_party/WebKit/Source/core/dom/shadow/ElementShadow.h
|
| @@ -40,11 +40,10 @@
|
|
|
| namespace blink {
|
|
|
| -class CORE_EXPORT ElementShadow final : public NoBaseWillBeGarbageCollectedFinalized<ElementShadow> {
|
| +class CORE_EXPORT ElementShadow final : public GarbageCollectedFinalized<ElementShadow> {
|
| WTF_MAKE_NONCOPYABLE(ElementShadow);
|
| - USING_FAST_MALLOC_WILL_BE_REMOVED(ElementShadow);
|
| public:
|
| - static PassOwnPtrWillBeRawPtr<ElementShadow> create();
|
| + static RawPtr<ElementShadow> create();
|
| ~ElementShadow();
|
|
|
| Element* host() const;
|
| @@ -124,7 +123,7 @@ private:
|
| bool m_needsSelectFeatureSet;
|
|
|
| // TODO(hayato): ShadowRoot should be an owner of SlotAssigment
|
| - OwnPtrWillBeMember<SlotAssignment> m_slotAssignment;
|
| + Member<SlotAssignment> m_slotAssignment;
|
| };
|
|
|
| inline Element* ElementShadow::host() const
|
|
|