Index: content/common/gpu/media/vaapi_tfp_picture.cc |
diff --git a/content/common/gpu/media/vaapi_tfp_picture.cc b/content/common/gpu/media/vaapi_tfp_picture.cc |
index ee037421edfb5cacee0781775ac8976d999efa00..7dbd1398649d0d9b0b43aa3927985cb43dd1fc9e 100644 |
--- a/content/common/gpu/media/vaapi_tfp_picture.cc |
+++ b/content/common/gpu/media/vaapi_tfp_picture.cc |
@@ -52,7 +52,7 @@ bool VaapiTFPPicture::Initialize() { |
return false; |
} |
- glx_image_ = new gfx::GLImageGLX(size(), GL_RGB); |
+ glx_image_ = new gl::GLImageGLX(size(), GL_RGB); |
if (!glx_image_->Initialize(x_pixmap_)) { |
// x_pixmap_ will be freed in the destructor. |
LOG(ERROR) << "Failed creating a GLX Pixmap for TFP"; |
@@ -74,7 +74,7 @@ bool VaapiTFPPicture::DownloadFromSurface( |
va_surface->size()); |
} |
-scoped_refptr<gfx::GLImage> VaapiTFPPicture::GetImageToBind() { |
+scoped_refptr<gl::GLImage> VaapiTFPPicture::GetImageToBind() { |
return nullptr; |
} |