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

Unified Diff: content/public/gpu/gpu_video_decode_accelerator_factory.h

Issue 1882373004: Migrate content/common/gpu/media code to media/gpu (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix several more bot-identified build issues Created 4 years, 8 months 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/gpu/gpu_video_decode_accelerator_factory.h
diff --git a/content/public/gpu/gpu_video_decode_accelerator_factory.h b/content/public/gpu/gpu_video_decode_accelerator_factory.h
index 313306bdd36af0d05b4f74cf2af26e47130afa07..f54f89139daed676c889d0b838eb6bcbc1b3d89c 100644
--- a/content/public/gpu/gpu_video_decode_accelerator_factory.h
+++ b/content/public/gpu/gpu_video_decode_accelerator_factory.h
@@ -25,9 +25,11 @@ class GLES2Decoder;
}
}
-namespace content {
-
+namespace media {
class GpuVideoDecodeAcceleratorFactoryImpl;
+}
+
+namespace content {
// This factory allows creation of VideoDecodeAccelerator implementations,
// providing the most applicable VDA for current platform and given
@@ -81,12 +83,14 @@ class CONTENT_EXPORT GpuVideoDecodeAcceleratorFactory {
private:
// TODO(posciak): This is temporary and will not be needed once
- // GpuVideoDecodeAcceleratorFactoryImpl implements
+ // media::GpuVideoDecodeAcceleratorFactoryImpl implements
// GpuVideoDecodeAcceleratorFactory, see crbug.com/597150 and related.
GpuVideoDecodeAcceleratorFactory(
- std::unique_ptr<GpuVideoDecodeAcceleratorFactoryImpl> gvdafactory_impl);
+ std::unique_ptr<media::GpuVideoDecodeAcceleratorFactoryImpl>
+ gvdafactory_impl);
- std::unique_ptr<GpuVideoDecodeAcceleratorFactoryImpl> gvdafactory_impl_;
+ std::unique_ptr<media::GpuVideoDecodeAcceleratorFactoryImpl>
+ gvdafactory_impl_;
};
} // namespace content

Powered by Google App Engine
This is Rietveld 408576698