| Index: content/common/gpu/gpu_channel.h
|
| diff --git a/content/common/gpu/gpu_channel.h b/content/common/gpu/gpu_channel.h
|
| index b0920cf92130ee22297b8b14d60f84236167c76c..fca0036259297abd95252ae52d5a1658e52b7c02 100644
|
| --- a/content/common/gpu/gpu_channel.h
|
| +++ b/content/common/gpu/gpu_channel.h
|
| @@ -42,7 +42,6 @@ namespace content {
|
| class DevToolsGpuAgent;
|
| class GpuChannelManager;
|
| class GpuChannelMessageFilter;
|
| -class GpuVideoEncodeAccelerator;
|
| class GpuWatchdog;
|
|
|
| // Encapsulates an IPC channel between the GPU process and one renderer
|
| @@ -166,8 +165,6 @@ class GpuChannel : public IPC::Listener,
|
| const GPUCreateCommandBufferConfig& init_params,
|
| int32* route_id);
|
| void OnDestroyCommandBuffer(int32 route_id);
|
| - void OnCreateVideoEncoder(int32* route_id);
|
| - void OnDestroyVideoEncoder(int32 route_id);
|
| void OnDevToolsStartEventsRecording(int32* route_id);
|
| void OnDevToolsStopEventsRecording();
|
|
|
| @@ -212,9 +209,6 @@ class GpuChannel : public IPC::Listener,
|
| typedef IDMap<GpuCommandBufferStub, IDMapOwnPointer> StubMap;
|
| StubMap stubs_;
|
|
|
| - typedef IDMap<GpuVideoEncodeAccelerator, IDMapOwnPointer> EncoderMap;
|
| - EncoderMap video_encoders_;
|
| -
|
| bool log_messages_; // True if we should log sent and received messages.
|
| gpu::gles2::DisallowedFeatures disallowed_features_;
|
| GpuWatchdog* watchdog_;
|
|
|