OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2014 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_COMMON_GPU_MEDIA_MEDIA_OZONE_PLATFORM_GBM_H_ | |
6 #define CONTENT_COMMON_GPU_MEDIA_MEDIA_OZONE_PLATFORM_GBM_H_ | |
7 | |
8 namespace media { | |
scherkus (not reviewing)
2014/07/29 17:48:54
is it typical to have differing namespaces for ozo
vignatti (out of this project)
2014/07/30 21:51:30
in particular for media, we decided to maintain th
| |
9 | |
10 class MediaOzonePlatform; | |
11 | |
12 MediaOzonePlatform* CreateMediaOzonePlatformGbm(); | |
13 | |
14 } // namespace media | |
15 | |
16 #endif // CONTENT_COMMON_GPU_MEDIA_MEDIA_OZONE_PLATFORM_GBM_H_ | |
OLD | NEW |