Explicitly add python-numpy dependency to install-build-deps.
[chromium-blink-merge.git] / mojo / services / html_viewer / mojo_blink_platform_impl.cc
blob3b9dab33e008b1fe393dd97ae5ba39d13c5eb030
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "mojo/services/html_viewer/mojo_blink_platform_impl.h"
7 #include "mojo/public/cpp/application/application_impl.h"
8 #include "mojo/services/html_viewer/webclipboard_impl.h"
9 #include "mojo/services/html_viewer/webcookiejar_impl.h"
10 #include "mojo/services/html_viewer/websockethandle_impl.h"
11 #include "mojo/services/html_viewer/weburlloader_impl.h"
13 namespace mojo {
15 MojoBlinkPlatformImpl::MojoBlinkPlatformImpl(ApplicationImpl* app) {
16 app->ConnectToService("mojo:network_service", &network_service_);
18 CookieStorePtr cookie_store;
19 network_service_->GetCookieStore(GetProxy(&cookie_store));
20 cookie_jar_.reset(new WebCookieJarImpl(cookie_store.Pass()));
22 ClipboardPtr clipboard;
23 app->ConnectToService("mojo:clipboard", &clipboard);
24 clipboard_.reset(new WebClipboardImpl(clipboard.Pass()));
27 MojoBlinkPlatformImpl::~MojoBlinkPlatformImpl() {
30 blink::WebURLLoader* MojoBlinkPlatformImpl::createURLLoader() {
31 return new WebURLLoaderImpl(network_service_.get());
34 blink::WebSocketHandle* MojoBlinkPlatformImpl::createWebSocketHandle() {
35 return new WebSocketHandleImpl(network_service_.get());
38 } // namespace mojo