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

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

Issue 1148253003: Add LayoutRoot (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Updated Created 5 years, 7 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: sky/engine/core/frame/FrameHost.h
diff --git a/sky/engine/core/frame/FrameHost.h b/sky/engine/core/frame/FrameHost.h
index 92b62283f7606cdebc81bbbbcc7398159997aa5e..8327e033dcc879f310ec8b8f40d9b8f19a354cd0 100644
--- a/sky/engine/core/frame/FrameHost.h
+++ b/sky/engine/core/frame/FrameHost.h
@@ -56,6 +56,8 @@ class FrameHost final {
WTF_MAKE_NONCOPYABLE(FrameHost); WTF_MAKE_FAST_ALLOCATED;
public:
static PassOwnPtr<FrameHost> create(Page&, ServiceProvider*);
+ static PassOwnPtr<FrameHost> createDummy(Settings*);
+
~FrameHost();
// Careful: This function will eventually be removed.
@@ -71,9 +73,11 @@ public:
private:
FrameHost(Page&, ServiceProvider*);
+ FrameHost(Settings*);
Page* m_page;
ServiceProvider* m_services;
+ Settings* m_settings;
};
}

Powered by Google App Engine
This is Rietveld 408576698