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

Unified Diff: sky/engine/core/frame/FrameHost.h

Issue 709203002: Remove more oilpan. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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
« no previous file with comments | « sky/engine/core/frame/FrameConsole.h ('k') | sky/engine/core/frame/ImageBitmap.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/core/frame/FrameHost.h
diff --git a/sky/engine/core/frame/FrameHost.h b/sky/engine/core/frame/FrameHost.h
index a39322e28b0edde04acfbe178777a279261c5156..5ed804336993daaa71d95eb4f6c07ae925ce14de 100644
--- a/sky/engine/core/frame/FrameHost.h
+++ b/sky/engine/core/frame/FrameHost.h
@@ -56,8 +56,8 @@ 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 FrameHost final : public DummyBase<FrameHost> {
- WTF_MAKE_NONCOPYABLE(FrameHost); WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED;
+class FrameHost final {
+ WTF_MAKE_NONCOPYABLE(FrameHost); WTF_MAKE_FAST_ALLOCATED;
public:
static PassOwnPtr<FrameHost> create(Page&, ServiceProvider&);
~FrameHost();
@@ -82,7 +82,7 @@ public:
private:
FrameHost(Page&, ServiceProvider&);
- RawPtr<Page> m_page;
+ Page* m_page;
ServiceProvider& m_services;
const OwnPtr<EventHandlerRegistry> m_eventHandlerRegistry;
};
« no previous file with comments | « sky/engine/core/frame/FrameConsole.h ('k') | sky/engine/core/frame/ImageBitmap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698