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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
// Copyright (c) 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.
#include "content/common/gpu/gpu_channel_test_common.h"
#include "base/test/test_simple_task_runner.h"
#include "base/thread_task_runner_handle.h"
#include "gpu/command_buffer/service/sync_point_manager.h"
#include "ipc/ipc_test_sink.h"
namespace content {
TestGpuChannelManager::TestGpuChannelManager(
IPC::TestSink* sink,
base::SingleThreadTaskRunner* task_runner,
base::SingleThreadTaskRunner* io_task_runner,
gpu::SyncPointManager* sync_point_manager,
GpuMemoryBufferFactory* gpu_memory_buffer_factory)
: GpuChannelManager(nullptr,
nullptr,
task_runner,
io_task_runner,
nullptr,
nullptr,
sync_point_manager,
gpu_memory_buffer_factory),
sink_(sink) {}
TestGpuChannelManager::~TestGpuChannelManager() {
// Clear gpu channels here so that any IPC messages sent are handled using the
// overridden Send method.
gpu_channels_.clear();
}
bool TestGpuChannelManager::Send(IPC::Message* msg) {
return sink_->Send(msg);
}
scoped_ptr<GpuChannel> TestGpuChannelManager::CreateGpuChannel(
gfx::GLShareGroup* share_group,
gpu::gles2::MailboxManager* mailbox_manager,
int client_id,
uint64_t client_tracing_id,
bool allow_future_sync_points) {
return make_scoped_ptr(
new TestGpuChannel(sink_, this, share_group, mailbox_manager,
task_runner_.get(), io_task_runner_.get(), client_id,
client_tracing_id, allow_future_sync_points));
}
TestGpuChannel::TestGpuChannel(IPC::TestSink* sink,
GpuChannelManager* gpu_channel_manager,
gfx::GLShareGroup* share_group,
gpu::gles2::MailboxManager* mailbox_manager,
base::SingleThreadTaskRunner* task_runner,
base::SingleThreadTaskRunner* io_task_runner,
int client_id,
uint64_t client_tracing_id,
bool allow_future_sync_points)
: GpuChannel(gpu_channel_manager,
nullptr,
share_group,
mailbox_manager,
task_runner,
io_task_runner,
client_id,
client_tracing_id,
false,
allow_future_sync_points),
sink_(sink) {}
TestGpuChannel::~TestGpuChannel() {
// Call stubs here so that any IPC messages sent are handled using the
// overridden Send method.
stubs_.clear();
}
base::ProcessId TestGpuChannel::GetClientPID() const {
return base::kNullProcessId;
}
IPC::ChannelHandle TestGpuChannel::Init(
base::WaitableEvent* shutdown_event,
IPC::AttachmentBroker* attachment_broker) {
return IPC::ChannelHandle(channel_id());
}
bool TestGpuChannel::Send(IPC::Message* msg) {
DCHECK(!msg->is_sync());
return sink_->Send(msg);
}
void TestGpuChannel::AddFilter(IPC::MessageFilter* filter) {}
void TestGpuChannel::RemoveFilter(IPC::MessageFilter* filter) {}
// TODO(sunnyps): Use a mock memory buffer factory when necessary.
GpuChannelTestCommon::GpuChannelTestCommon()
: sink_(new IPC::TestSink),
task_runner_(new base::TestSimpleTaskRunner),
io_task_runner_(new base::TestSimpleTaskRunner),
sync_point_manager_(new gpu::SyncPointManager(false)),
channel_manager_(new TestGpuChannelManager(sink_.get(),
task_runner_.get(),
io_task_runner_.get(),
sync_point_manager_.get(),
nullptr)) {}
GpuChannelTestCommon::~GpuChannelTestCommon() {}
} // namespace content
|