Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1432)

Unified Diff: content/common/gpu/gpu_channel.h

Issue 185403020: Make VEA client of command buffer; move sync. IPC to VDA/VEA::Initialize() (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: f2a9ccb5 Rebase, posciak@ comments. Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_;

Powered by Google App Engine
This is Rietveld 408576698