Index: content/common/gpu/gpu_channel.h |
diff --git a/content/common/gpu/gpu_channel.h b/content/common/gpu/gpu_channel.h |
index b79b8a0ac50db937b0160252c813651c4f2ff912..095ab84c9a9f8d6df14785dc8e926836b38533cf 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_; |