Index: components/arc/video/arc_video_service.h |
diff --git a/components/arc/video/arc_video_service.h b/components/arc/video/arc_video_service.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..6f86a16f4da47a92e773aa95a84284395283ecaf |
--- /dev/null |
+++ b/components/arc/video/arc_video_service.h |
@@ -0,0 +1,25 @@ |
+// Copyright 2015 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef COMPONENTS_ARC_ARC_VIDEO_SERVICE_H |
+#define COMPONENTS_ARC_ARC_VIDEO_SERVICE_H |
+ |
+namespace arc { |
+ |
+// ArcVideoService is an abstract class providing video decoding/encoding |
+// acceleration service. |
+// The purpose of this class is to create a channel into the GPU process only, |
+// which then handles video decoding/encoding, without going through |
+// ArcVideoService anymore. |
+class ArcVideoService { |
Owen Lin
2015/12/29 05:31:42
The document of this class doesn't match to the co
kcwu
2015/12/29 13:24:43
Done.
|
+ public: |
+ virtual ~ArcVideoService(); |
+ |
+ // Initializes and registers itself to ArcBridgeService. |
+ virtual void Initialize() = 0; |
+}; |
+ |
+} // namespace arc |
+ |
+#endif // COMPONENTS_ARC_ARC_VIDEO_SERVICE_H |