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

Unified Diff: third_party/WebKit/Source/core/dom/shadow/ElementShadow.h

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 months 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 side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698