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

Unified Diff: third_party/WebKit/Source/core/html/shadow/ClearButtonElement.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/html/shadow/ClearButtonElement.h
diff --git a/third_party/WebKit/Source/core/html/shadow/ClearButtonElement.h b/third_party/WebKit/Source/core/html/shadow/ClearButtonElement.h
index 9d1dfd4628648a8049f2ca91c0067d6199fea55f..95bd6c2becc383c9a837b3557ba36fbf64900874 100644
--- a/third_party/WebKit/Source/core/html/shadow/ClearButtonElement.h
+++ b/third_party/WebKit/Source/core/html/shadow/ClearButtonElement.h
@@ -33,7 +33,7 @@ namespace blink {
class ClearButtonElement final : public HTMLDivElement {
public:
- class ClearButtonOwner : public WillBeGarbageCollectedMixin {
+ class ClearButtonOwner : public GarbageCollectedMixin {
public:
virtual ~ClearButtonOwner() { }
virtual void focusAndSelectClearButtonOwner() = 0;
@@ -41,7 +41,7 @@ public:
virtual void clearValue() = 0;
};
- static PassRefPtrWillBeRawPtr<ClearButtonElement> create(Document&, ClearButtonOwner&);
+ static RawPtr<ClearButtonElement> create(Document&, ClearButtonOwner&);
void removeClearButtonOwner() { m_clearButtonOwner = nullptr; }
DECLARE_VIRTUAL_TRACE();
@@ -53,7 +53,7 @@ private:
void defaultEventHandler(Event*) override;
bool isClearButtonElement() const override;
- RawPtrWillBeMember<ClearButtonOwner> m_clearButtonOwner;
+ Member<ClearButtonOwner> m_clearButtonOwner;
};
DEFINE_TYPE_CASTS(ClearButtonElement, Element, element, element->isClearButtonElement(), element.isClearButtonElement());

Powered by Google App Engine
This is Rietveld 408576698