OLD | NEW |
| (Empty) |
1 // Copyright 2015 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. | |
4 | |
5 #include "components/view_manager/public/cpp/view_surface.h" | |
6 | |
7 #include "components/view_manager/public/cpp/view_surface_client.h" | |
8 #include "mojo/converters/surfaces/surfaces_type_converters.h" | |
9 | |
10 namespace mojo { | |
11 | |
12 ViewSurface::~ViewSurface() { | |
13 } | |
14 | |
15 void ViewSurface::BindToThread() { | |
16 DCHECK(!bound_to_thread_); | |
17 bound_to_thread_ = true; | |
18 surface_.Bind(surface_info_.Pass()); | |
19 client_binding_.Bind(client_request_.Pass()); | |
20 } | |
21 | |
22 void ViewSurface::SubmitCompositorFrame(mojo::CompositorFramePtr frame) { | |
23 DCHECK(bound_to_thread_); | |
24 if (!surface_) | |
25 return; | |
26 surface_->SubmitCompositorFrame(frame.Pass(), mojo::Closure()); | |
27 } | |
28 | |
29 ViewSurface::ViewSurface( | |
30 mojo::InterfacePtrInfo<mojo::Surface> surface_info, | |
31 mojo::InterfaceRequest<mojo::SurfaceClient> client_request) | |
32 : client_(nullptr), | |
33 surface_info_(surface_info.Pass()), | |
34 client_request_(client_request.Pass()), | |
35 client_binding_(this), | |
36 bound_to_thread_(false) { | |
37 } | |
38 | |
39 void ViewSurface::ReturnResources( | |
40 mojo::Array<mojo::ReturnedResourcePtr> resources) { | |
41 if (!client_) | |
42 return; | |
43 client_->OnResourcesReturned(this, resources.Pass()); | |
44 } | |
45 | |
46 } // namespace mojo | |
OLD | NEW |