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

Unified Diff: third_party/WebKit/Source/core/html/shadow/MediaControlElementTypes.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/MediaControlElementTypes.h
diff --git a/third_party/WebKit/Source/core/html/shadow/MediaControlElementTypes.h b/third_party/WebKit/Source/core/html/shadow/MediaControlElementTypes.h
index 6ee8a71796372af6b173893c6c71045a18316d72..21eb10c733f2ded30ca75163b7224cc9cd2a7b4d 100644
--- a/third_party/WebKit/Source/core/html/shadow/MediaControlElementTypes.h
+++ b/third_party/WebKit/Source/core/html/shadow/MediaControlElementTypes.h
@@ -74,7 +74,7 @@ CORE_EXPORT MediaControlElementType mediaControlElementType(const Node*);
// ----------------------------
-class MediaControlElement : public WillBeGarbageCollectedMixin {
+class MediaControlElement : public GarbageCollectedMixin {
public:
// These hold the state about whether this control should be shown if
// space permits. These will also show / hide as needed.
@@ -106,9 +106,9 @@ private:
// if and only if we're wanted and we fit.
void updateShownState();
- RawPtrWillBeMember<MediaControls> m_mediaControls;
+ Member<MediaControls> m_mediaControls;
MediaControlElementType m_displayType;
- RawPtrWillBeMember<HTMLElement> m_element;
+ Member<HTMLElement> m_element;
bool m_isWanted : 1;
bool m_doesFit : 1;
};
@@ -116,7 +116,7 @@ private:
// ----------------------------
class MediaControlDivElement : public HTMLDivElement, public MediaControlElement {
- WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(MediaControlDivElement);
+ USING_GARBAGE_COLLECTED_MIXIN(MediaControlDivElement);
public:
DECLARE_VIRTUAL_TRACE();
@@ -130,7 +130,7 @@ private:
// ----------------------------
class MediaControlInputElement : public HTMLInputElement, public MediaControlElement {
- WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(MediaControlInputElement);
+ USING_GARBAGE_COLLECTED_MIXIN(MediaControlInputElement);
public:
DECLARE_VIRTUAL_TRACE();

Powered by Google App Engine
This is Rietveld 408576698