summaryrefslogtreecommitdiffstats
path: root/chrome/gpu/gpu_video_service.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/gpu/gpu_video_service.cc')
-rw-r--r--chrome/gpu/gpu_video_service.cc7
1 files changed, 7 insertions, 0 deletions
diff --git a/chrome/gpu/gpu_video_service.cc b/chrome/gpu/gpu_video_service.cc
index 2ef32e8..03025b8 100644
--- a/chrome/gpu/gpu_video_service.cc
+++ b/chrome/gpu/gpu_video_service.cc
@@ -7,10 +7,17 @@
#include "chrome/gpu/gpu_video_decoder.h"
#include "chrome/gpu/gpu_video_service.h"
+struct GpuVideoService::GpuVideoDecoderInfo {
+ scoped_refptr<GpuVideoDecoder> decoder;
+ GpuChannel* channel;
+};
+
+
GpuVideoService::GpuVideoService() {
// TODO(jiesun): move this time consuming stuff out of here.
IntializeGpuVideoService();
}
+
GpuVideoService::~GpuVideoService() {
// TODO(jiesun): move this time consuming stuff out of here.
UnintializeGpuVideoService();