| Index: ui/gl/gl_surface.cc
|
| diff --git a/ui/gl/gl_surface.cc b/ui/gl/gl_surface.cc
|
| index 676719029742060beef9a6294d55581a3ee993d6..205fcd6c47ff89954327490f886bfd6cf48c98f4 100644
|
| --- a/ui/gl/gl_surface.cc
|
| +++ b/ui/gl/gl_surface.cc
|
| @@ -182,6 +182,10 @@ bool GLSurface::SupportsDCLayers() const {
|
| return false;
|
| }
|
|
|
| +bool GLSurface::UseOverlaysForVideo() const {
|
| + return false;
|
| +}
|
| +
|
| bool GLSurface::SetDrawRectangle(const gfx::Rect& rect) {
|
| return false;
|
| }
|
| @@ -391,6 +395,10 @@ bool GLSurfaceAdapter::SupportsDCLayers() const {
|
| return surface_->SupportsDCLayers();
|
| }
|
|
|
| +bool GLSurfaceAdapter::UseOverlaysForVideo() const {
|
| + return surface_->UseOverlaysForVideo();
|
| +}
|
| +
|
| bool GLSurfaceAdapter::SetDrawRectangle(const gfx::Rect& rect) {
|
| return surface_->SetDrawRectangle(rect);
|
| }
|
|
|