Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CONTENT_PUBLIC_BROWSER_ARC_VIDEO_SERVICE_H_ | |
| 6 #define CONTENT_PUBLIC_BROWSER_ARC_VIDEO_SERVICE_H_ | |
| 7 | |
| 8 #include "base/memory/scoped_ptr.h" | |
| 9 #include "content/common/content_export.h" | |
| 10 | |
| 11 namespace arc { | |
| 12 class ArcVideoService; | |
| 13 } | |
| 14 | |
| 15 namespace content { | |
| 16 | |
| 17 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.
| |
| 18 | |
| 19 } // namespace content | |
| 20 | |
| 21 #endif // CONTENT_PUBLIC_BROWSER_ARC_VIDEO_SERVICE_H_ | |
| OLD | NEW |