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

Unified Diff: third_party/WebKit/Source/core/html/HTMLIFrameElement.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, 10 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/HTMLIFrameElement.h
diff --git a/third_party/WebKit/Source/core/html/HTMLIFrameElement.h b/third_party/WebKit/Source/core/html/HTMLIFrameElement.h
index c0a342c73efff72fbf4f478c2259a854b803a6d9..72fd19078fb6a02f6bd16e2295cdd569e9bec370 100644
--- a/third_party/WebKit/Source/core/html/HTMLIFrameElement.h
+++ b/third_party/WebKit/Source/core/html/HTMLIFrameElement.h
@@ -31,7 +31,7 @@ namespace blink {
class HTMLIFrameElement final : public HTMLFrameElementBase, public DOMSettableTokenListObserver {
DEFINE_WRAPPERTYPEINFO();
- WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(HTMLIFrameElement);
+ USING_GARBAGE_COLLECTED_MIXIN(HTMLIFrameElement);
public:
DECLARE_NODE_FACTORY(HTMLIFrameElement);
DECLARE_VIRTUAL_TRACE();
@@ -61,7 +61,7 @@ private:
AtomicString m_name;
bool m_didLoadNonEmptyDocument;
- RefPtrWillBeMember<HTMLIFrameElementSandbox> m_sandbox;
+ Member<HTMLIFrameElementSandbox> m_sandbox;
ReferrerPolicy m_referrerPolicy;
};

Powered by Google App Engine
This is Rietveld 408576698