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

Unified Diff: sky/engine/web/WebViewImpl.cpp

Issue 696733003: Introduce blink::ServiceProvider (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 2 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/web/WebViewImpl.cpp
diff --git a/sky/engine/web/WebViewImpl.cpp b/sky/engine/web/WebViewImpl.cpp
index fd1768ff8127201ffb0b6ab8d9697b5f1cb932e4..b28e54ed7139bca3028fa597aedab0d93e9025eb 100644
--- a/sky/engine/web/WebViewImpl.cpp
+++ b/sky/engine/web/WebViewImpl.cpp
@@ -194,7 +194,7 @@ WebViewImpl::WebViewImpl(WebViewClient* client)
pageClients.editorClient = &m_editorClientImpl;
pageClients.spellCheckerClient = &m_spellCheckerClientImpl;
- m_page = adoptPtr(new Page(pageClients));
+ m_page = adoptPtr(new Page(pageClients, m_client->services()));
m_page->makeOrdinary();
setDeviceScaleFactor(m_client->screenInfo().deviceScaleFactor);

Powered by Google App Engine
This is Rietveld 408576698