blob: 7f82ab6207cb876f909a86e00a5bf2b1e6f5db89 (
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
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
|
// Copyright (c) 2010 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 CHROME_GPU_GPU_THREAD_H_
#define CHROME_GPU_GPU_THREAD_H_
#pragma once
#include <string>
#include "base/basictypes.h"
#include "base/command_line.h"
#include "base/scoped_ptr.h"
#include "base/time.h"
#include "build/build_config.h"
#include "chrome/common/child_thread.h"
#include "chrome/common/gpu_info.h"
#include "chrome/gpu/gpu_channel.h"
#include "chrome/gpu/gpu_config.h"
#include "chrome/gpu/x_util.h"
#include "gfx/native_widget_types.h"
namespace IPC {
struct ChannelHandle;
}
class GpuWatchdogThread;
class GpuThread : public ChildThread {
public:
GpuThread();
// For single-process mode.
explicit GpuThread(const std::string& channel_id);
~GpuThread();
void Init(const base::Time& process_start_time);
void StopWatchdog();
// Remove the channel for a particular renderer.
void RemoveChannel(int renderer_id);
private:
// ChildThread overrides.
virtual bool OnControlMessageReceived(const IPC::Message& msg);
// Message handlers.
void OnInitialize();
void OnEstablishChannel(int renderer_id);
void OnCloseChannel(const IPC::ChannelHandle& channel_handle);
void OnSynchronize();
void OnCollectGraphicsInfo(GPUInfo::Level level);
void OnCreateViewCommandBuffer(
gfx::PluginWindowHandle window,
int32 render_view_id,
int32 renderer_id,
const GPUCreateCommandBufferConfig& init_params);
#if defined(OS_MACOSX)
void OnAcceleratedSurfaceBuffersSwappedACK(
int renderer_id, int32 route_id, uint64 swap_buffers_count);
void OnDidDestroyAcceleratedSurface(int renderer_id, int32 renderer_route_id);
#endif
void OnCrash();
void OnHang();
#if defined(OS_WIN)
static void CollectDxDiagnostics(GpuThread* thread);
static void SetDxDiagnostics(GpuThread* thread, const DxDiagNode& node);
#endif
base::Time process_start_time_;
scoped_refptr<GpuWatchdogThread> watchdog_thread_;
typedef base::hash_map<int, scoped_refptr<GpuChannel> > GpuChannelMap;
GpuChannelMap gpu_channels_;
// Information about the GPU, such as device and vendor ID.
GPUInfo gpu_info_;
DISALLOW_COPY_AND_ASSIGN(GpuThread);
};
#endif // CHROME_GPU_GPU_THREAD_H_
|