blob: 878217bb600fe5cb69d2b08258527d22ae43cb04 (
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
50
51
52
53
|
// Copyright 2015 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 CONTENT_CHILD_CHILD_IO_SURFACE_MANAGER_MAC_H_
#define CONTENT_CHILD_CHILD_IO_SURFACE_MANAGER_MAC_H_
#include "base/mac/scoped_mach_port.h"
#include "base/macros.h"
#include "base/memory/singleton.h"
#include "content/common/mac/io_surface_manager.h"
#include "content/common/mac/io_surface_manager_token.h"
namespace content {
// Implementation of IOSurfaceManager that registers and acquires IOSurfaces
// through a Mach service.
class CONTENT_EXPORT ChildIOSurfaceManager : public IOSurfaceManager {
public:
// Returns the global ChildIOSurfaceManager.
static ChildIOSurfaceManager* GetInstance();
// Overridden from IOSurfaceManager:
bool RegisterIOSurface(int io_surface_id,
int client_id,
IOSurfaceRef io_surface) override;
void UnregisterIOSurface(int io_surface_id, int client_id) override;
IOSurfaceRef AcquireIOSurface(int io_surface_id) override;
// Set the service Mach port. Ownership of |service_port| is passed to the
// manager.
void set_service_port(mach_port_t service_port) {
service_port_.reset(service_port);
}
// Set the token used when communicating with the Mach service.
void set_token(const IOSurfaceManagerToken& token) { token_ = token; }
private:
friend struct DefaultSingletonTraits<ChildIOSurfaceManager>;
ChildIOSurfaceManager();
~ChildIOSurfaceManager() override;
base::mac::ScopedMachSendRight service_port_;
IOSurfaceManagerToken token_;
DISALLOW_COPY_AND_ASSIGN(ChildIOSurfaceManager);
};
} // namespace content
#endif // CONTENT_CHILD_CHILD_IO_SURFACE_MANAGER_MAC_H_
|