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

Unified Diff: chrome/gpu/gpu_video_decoder.h

Issue 3335014: Added FakeGlVideoDecodeEngine to exercise the IPC protocol for hardware video decoding (Closed)
Patch Set: compile man... Created 10 years, 3 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: chrome/gpu/gpu_video_decoder.h
diff --git a/chrome/gpu/gpu_video_decoder.h b/chrome/gpu/gpu_video_decoder.h
index 728222c13a29180081d549c9816ba58c7da8a56e..9aba2b54e4cda8d1df9550cf7ea83d1e10f4663d 100644
--- a/chrome/gpu/gpu_video_decoder.h
+++ b/chrome/gpu/gpu_video_decoder.h
@@ -74,8 +74,7 @@ class GpuVideoDecoder
base::ProcessHandle renderer_handle_;
// The GLES2 decoder has the context associated with this decoder. This object
- // is used to switch GLES2 context and translate client texture ID to service
- // ID.
+ // is used to switch context and translate client texture ID to service ID.
gpu::gles2::GLES2Decoder* gles2_decoder_;
scoped_ptr<base::SharedMemory> input_transfer_buffer_;
@@ -90,7 +89,7 @@ class GpuVideoDecoder
void OnUninitialize();
void OnFlush();
void OnEmptyThisBuffer(const GpuVideoDecoderInputBufferParam& buffer);
- void OnFillThisBuffer(const GpuVideoDecoderOutputBufferParam& frame);
+ void OnFillThisBuffer(const GpuVideoDecoderOutputBufferParam& param);
void OnFillThisBufferDoneACK();
// Output message helper.
@@ -99,7 +98,7 @@ class GpuVideoDecoder
void SendFlushDone();
void SendEmptyBufferDone();
void SendEmptyBufferACK();
- void SendFillBufferDone(const GpuVideoDecoderOutputBufferParam& frame);
+ void SendFillBufferDone(const GpuVideoDecoderOutputBufferParam& param);
DISALLOW_COPY_AND_ASSIGN(GpuVideoDecoder);
};

Powered by Google App Engine
This is Rietveld 408576698