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

Unified Diff: content/public/browser/arc_video_service.h

Issue 1451353002: Implement GpuArcVideoService for arc video accelerator (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressed avi, stevenjb, lhchavez, dcheng's comments Created 5 years 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/public/browser/arc_video_service.h
diff --git a/content/public/browser/arc_video_service.h b/content/public/browser/arc_video_service.h
new file mode 100644
index 0000000000000000000000000000000000000000..9d84824c7473b91b7ba8df7c8a6997ddd6a1f677
--- /dev/null
+++ b/content/public/browser/arc_video_service.h
@@ -0,0 +1,21 @@
+// 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 CONTENT_PUBLIC_BROWSER_ARC_VIDEO_SERVICE_H_
+#define CONTENT_PUBLIC_BROWSER_ARC_VIDEO_SERVICE_H_
+
+#include "base/memory/scoped_ptr.h"
+#include "content/common/content_export.h"
+
+namespace arc {
+class ArcVideoService;
+}
+
+namespace content {
+
+CONTENT_EXPORT scoped_ptr<arc::ArcVideoService> CreateArcVideoService();
Owen Lin 2015/12/29 05:31:42 Can we move this into ArcVideoBridge.h and just im
kcwu 2015/12/29 13:24:44 Acknowledged. I revised the code in the other way.
+
+} // namespace content
+
+#endif // CONTENT_PUBLIC_BROWSER_ARC_VIDEO_SERVICE_H_

Powered by Google App Engine
This is Rietveld 408576698