| Index: ui/gl/gl_surface_egl.cc
|
| diff --git a/ui/gl/gl_surface_egl.cc b/ui/gl/gl_surface_egl.cc
|
| index f85258ff8b876e276aed88706849a1a179131e0a..778e0c525c25e2f9724646ed5019a73e7fb3ac1f 100644
|
| --- a/ui/gl/gl_surface_egl.cc
|
| +++ b/ui/gl/gl_surface_egl.cc
|
| @@ -672,7 +672,7 @@ gfx::Size NativeViewGLSurfaceEGL::GetSize() {
|
| return gfx::Size(width, height);
|
| }
|
|
|
| -bool NativeViewGLSurfaceEGL::Resize(const gfx::Size& size) {
|
| +bool NativeViewGLSurfaceEGL::Resize(const gfx::Size& size, float scale_factor) {
|
| if (size == GetSize())
|
| return true;
|
|
|
| @@ -815,7 +815,7 @@ gfx::Size PbufferGLSurfaceEGL::GetSize() {
|
| return size_;
|
| }
|
|
|
| -bool PbufferGLSurfaceEGL::Resize(const gfx::Size& size) {
|
| +bool PbufferGLSurfaceEGL::Resize(const gfx::Size& size, float scale_factor) {
|
| if (size == size_)
|
| return true;
|
|
|
| @@ -901,7 +901,7 @@ gfx::Size SurfacelessEGL::GetSize() {
|
| return size_;
|
| }
|
|
|
| -bool SurfacelessEGL::Resize(const gfx::Size& size) {
|
| +bool SurfacelessEGL::Resize(const gfx::Size& size, float scale_factor) {
|
| size_ = size;
|
| return true;
|
| }
|
|
|