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_ |