summaryrefslogtreecommitdiff
path: root/chromium/components/mus/gpu/gpu_service_impl.h
blob: 9d5f66ec7152b8f9df13332790b0fa106887d8e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef COMPONENTS_MUS_GPU_GPU_SERVICE_IMPL_H_
#define COMPONENTS_MUS_GPU_GPU_SERVICE_IMPL_H_

#include "components/mus/public/interfaces/gpu_memory_buffer.mojom.h"
#include "components/mus/public/interfaces/gpu_service.mojom.h"
#include "mojo/public/cpp/bindings/interface_request.h"
#include "mojo/public/cpp/bindings/strong_binding.h"

namespace shell {
class Connection;
}

namespace mus {

class GpuServiceImpl : public mojom::GpuService {
 public:
  GpuServiceImpl(mojo::InterfaceRequest<mojom::GpuService> request,
                 shell::Connection* connection);
  ~GpuServiceImpl() override;

  // mojom::GpuService overrides:
  void EstablishGpuChannel(
      const mojom::GpuService::EstablishGpuChannelCallback& callback) override;

  void CreateGpuMemoryBuffer(
      mojom::GpuMemoryBufferIdPtr id,
      const gfx::Size& size,
      mojom::BufferFormat format,
      mojom::BufferUsage usage,
      uint64_t surface_id,
      const mojom::GpuService::CreateGpuMemoryBufferCallback& callback)
      override;

  void DestroyGpuMemoryBuffer(mojom::GpuMemoryBufferIdPtr id,
                              const gpu::SyncToken& sync_token) override;

 private:
  mojo::StrongBinding<GpuService> binding_;

  DISALLOW_COPY_AND_ASSIGN(GpuServiceImpl);
};

}  // namespace mus

#endif  // COMPONENTS_MUS_GPU_GPU_SERVICE_IMPL_H_