Chromium Code Reviews| Index: content/common/gpu/media/gpu_video_decode_accelerator_factory_impl.h |
| diff --git a/content/common/gpu/media/gpu_video_decode_accelerator_factory_impl.h b/content/common/gpu/media/gpu_video_decode_accelerator_factory_impl.h |
| index dd2734853f9601d00d4a9f93695b3498bb720d23..62c94431422a59cdc85567ec7673f69f597cb986 100644 |
| --- a/content/common/gpu/media/gpu_video_decode_accelerator_factory_impl.h |
| +++ b/content/common/gpu/media/gpu_video_decode_accelerator_factory_impl.h |
| @@ -7,6 +7,7 @@ |
| #include "base/callback.h" |
| #include "base/threading/thread_checker.h" |
| +#include "content/common/content_export.h" |
| #include "gpu/command_buffer/service/gpu_preferences.h" |
| #include "gpu/config/gpu_info.h" |
| #include "media/video/video_decode_accelerator.h" |
| @@ -32,8 +33,12 @@ namespace content { |
| // TODO(posciak): this class should be an implementation of |
| // content::GpuVideoDecodeAcceleratorFactory, however that can only be achieved |
| // once this is moved out of content/common, see crbug.com/597150 and related. |
| -class GpuVideoDecodeAcceleratorFactoryImpl { |
| - public: |
| +class |
| +#if defined(CONTENT_IMPLEMENTATION) |
| +CONTENT_EXPORT |
| +#endif |
|
piman
2016/04/07 22:26:58
Please just add CONTENT_EXPORT unconditionally (ju
Mark Dittmer
2016/04/08 13:08:43
Done.
|
| +GpuVideoDecodeAcceleratorFactoryImpl { |
| +public: |
| ~GpuVideoDecodeAcceleratorFactoryImpl(); |
| // Return current GLContext. |