| Index: ui/gl/gl_surface.cc
|
| diff --git a/ui/gl/gl_surface.cc b/ui/gl/gl_surface.cc
|
| index 3c4538e66ee4b755297839187eec74686f232def..259798c17ab4af6a5a264875bbaedbbcf20f8ed5 100644
|
| --- a/ui/gl/gl_surface.cc
|
| +++ b/ui/gl/gl_surface.cc
|
| @@ -99,7 +99,7 @@ bool GLSurface::Initialize() {
|
| return true;
|
| }
|
|
|
| -bool GLSurface::Resize(const gfx::Size& size) {
|
| +bool GLSurface::Resize(const gfx::Size& size, float scale_factor) {
|
| NOTIMPLEMENTED();
|
| return false;
|
| }
|
| @@ -232,8 +232,8 @@ void GLSurfaceAdapter::Destroy() {
|
| surface_->Destroy();
|
| }
|
|
|
| -bool GLSurfaceAdapter::Resize(const gfx::Size& size) {
|
| - return surface_->Resize(size);
|
| +bool GLSurfaceAdapter::Resize(const gfx::Size& size, float scale_factor) {
|
| + return surface_->Resize(size, scale_factor);
|
| }
|
|
|
| bool GLSurfaceAdapter::Recreate() {
|
|
|