| Index: ui/gl/gl_surface.cc
|
| diff --git a/ui/gl/gl_surface.cc b/ui/gl/gl_surface.cc
|
| index 0feeb34ddebb0711479c12807dada960d208d39f..f09aa35924daf21f1ab19a5eb57ba463eb8e011c 100644
|
| --- a/ui/gl/gl_surface.cc
|
| +++ b/ui/gl/gl_surface.cc
|
| @@ -84,6 +84,11 @@ bool GLSurface::Resize(const gfx::Size& size) {
|
| return false;
|
| }
|
|
|
| +bool GLSurface::Recreate() {
|
| + NOTIMPLEMENTED();
|
| + return false;
|
| +}
|
| +
|
| bool GLSurface::DeferDraws() {
|
| return false;
|
| }
|
| @@ -185,6 +190,10 @@ bool GLSurfaceAdapter::Resize(const gfx::Size& size) {
|
| return surface_->Resize(size);
|
| }
|
|
|
| +bool GLSurfaceAdapter::Recreate() {
|
| + return surface_->Recreate();
|
| +}
|
| +
|
| bool GLSurfaceAdapter::DeferDraws() {
|
| return surface_->DeferDraws();
|
| }
|
|
|