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

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, 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/HTMLIFrameElement.h
diff --git a/third_party/WebKit/Source/core/html/HTMLIFrameElement.h b/third_party/WebKit/Source/core/html/HTMLIFrameElement.h
index 28608d87c00fb2a0e729b2bc1e4d8d0cfc2e8369..9b2ac57d5b75b348af3862ff0ada2d2e2d28b1df 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 DOMTokenListObserver {
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;
};
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLHRElement.cpp ('k') | third_party/WebKit/Source/core/html/HTMLIFrameElementSandbox.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698