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

Unified Diff: third_party/WebKit/Source/core/html/HTMLFrameOwnerElement.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/HTMLFrameOwnerElement.h
diff --git a/third_party/WebKit/Source/core/html/HTMLFrameOwnerElement.h b/third_party/WebKit/Source/core/html/HTMLFrameOwnerElement.h
index a562da2316e9bce2e7bca7fad0ec2bc3e154a0a0..499a9f279f370d08901aaeab00fbd58f0f1a959d 100644
--- a/third_party/WebKit/Source/core/html/HTMLFrameOwnerElement.h
+++ b/third_party/WebKit/Source/core/html/HTMLFrameOwnerElement.h
@@ -39,7 +39,7 @@ class LayoutPart;
class Widget;
class CORE_EXPORT HTMLFrameOwnerElement : public HTMLElement, public FrameOwner {
- WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(HTMLFrameOwnerElement);
+ USING_GARBAGE_COLLECTED_MIXIN(HTMLFrameOwnerElement);
public:
~HTMLFrameOwnerElement() override;
@@ -59,8 +59,8 @@ public:
virtual bool loadedNonEmptyDocument() const { return false; }
virtual void didLoadNonEmptyDocument() { }
- void setWidget(PassRefPtrWillBeRawPtr<Widget>);
- PassRefPtrWillBeRawPtr<Widget> releaseWidget();
+ void setWidget(RawPtr<Widget>);
+ RawPtr<Widget> releaseWidget();
Widget* ownedWidget() const;
class UpdateSuspendScope {
@@ -99,8 +99,8 @@ private:
virtual ReferrerPolicy referrerPolicyAttribute() { return ReferrerPolicyDefault; }
- RawPtrWillBeMember<Frame> m_contentFrame;
- RefPtrWillBeMember<Widget> m_widget;
+ Member<Frame> m_contentFrame;
+ Member<Widget> m_widget;
SandboxFlags m_sandboxFlags;
};
@@ -136,9 +136,9 @@ public:
}
private:
- CORE_EXPORT static WillBeHeapHashCountedSet<RawPtrWillBeMember<Node>>& disabledSubtreeRoots();
+ CORE_EXPORT static HeapHashCountedSet<Member<Node>>& disabledSubtreeRoots();
- RawPtrWillBeMember<Node> m_root;
+ Member<Node> m_root;
};
DEFINE_TYPE_CASTS(HTMLFrameOwnerElement, FrameOwner, owner, owner->isLocal(), owner.isLocal());
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLFormElement.cpp ('k') | third_party/WebKit/Source/core/html/HTMLFrameOwnerElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698