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

Unified Diff: third_party/WebKit/Source/core/frame/FrameHost.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/frame/FrameHost.h
diff --git a/third_party/WebKit/Source/core/frame/FrameHost.h b/third_party/WebKit/Source/core/frame/FrameHost.h
index 1780acdb8974d4ad363274adfe51264ebfabdb6c..838ec18854398e8eb8d8609fdee99184a1f64e69 100644
--- a/third_party/WebKit/Source/core/frame/FrameHost.h
+++ b/third_party/WebKit/Source/core/frame/FrameHost.h
@@ -62,10 +62,10 @@ class Visitor;
// browser-level concept and Blink core/ only knows about its LocalFrame (and FrameHost).
// Separating Page from the rest of core/ through this indirection
// allows us to slowly refactor Page without breaking the rest of core.
-class CORE_EXPORT FrameHost final : public NoBaseWillBeGarbageCollectedFinalized<FrameHost> {
- WTF_MAKE_NONCOPYABLE(FrameHost); USING_FAST_MALLOC_WILL_BE_REMOVED(FrameHost);
+class CORE_EXPORT FrameHost final : public GarbageCollectedFinalized<FrameHost> {
+ WTF_MAKE_NONCOPYABLE(FrameHost);
public:
- static PassOwnPtrWillBeRawPtr<FrameHost> create(Page&);
+ static RawPtr<FrameHost> create(Page&);
~FrameHost();
// Careful: This function will eventually be removed.
@@ -107,12 +107,12 @@ public:
private:
explicit FrameHost(Page&);
- RawPtrWillBeMember<Page> m_page;
- const OwnPtrWillBeMember<TopControls> m_topControls;
+ Member<Page> m_page;
+ const Member<TopControls> m_topControls;
const OwnPtr<PageScaleConstraintsSet> m_pageScaleConstraintsSet;
- const OwnPtrWillBeMember<VisualViewport> m_visualViewport;
- const OwnPtrWillBeMember<EventHandlerRegistry> m_eventHandlerRegistry;
- const OwnPtrWillBeMember<ConsoleMessageStorage> m_consoleMessageStorage;
+ const Member<VisualViewport> m_visualViewport;
+ const Member<EventHandlerRegistry> m_eventHandlerRegistry;
+ const Member<ConsoleMessageStorage> m_consoleMessageStorage;
AtomicString m_overrideEncoding;
int m_subframeCount;
« no previous file with comments | « third_party/WebKit/Source/core/frame/FrameConsole.cpp ('k') | third_party/WebKit/Source/core/frame/FrameHost.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698