| Index: ui/gl/gl_surface.cc
|
| diff --git a/ui/gl/gl_surface.cc b/ui/gl/gl_surface.cc
|
| index 832015b22f94d830d388ff06c1d5a10ba0c67550..45b6494be5719b2930097d447401d48e06083e02 100644
|
| --- a/ui/gl/gl_surface.cc
|
| +++ b/ui/gl/gl_surface.cc
|
| @@ -147,9 +147,7 @@ unsigned GLSurface::GetFormat() {
|
| return 0;
|
| }
|
|
|
| -bool GLSurface::GetVSyncParameters(base::TimeTicks* timebase,
|
| - base::TimeDelta* interval) {
|
| - return false;
|
| +void GLSurface::GetVSyncParameters(const UpdateVSyncCallback& callback) {
|
| }
|
|
|
| GLSurface* GLSurface::GetCurrent() {
|
| @@ -256,9 +254,8 @@ unsigned GLSurfaceAdapter::GetFormat() {
|
| return surface_->GetFormat();
|
| }
|
|
|
| -bool GLSurfaceAdapter::GetVSyncParameters(base::TimeTicks* timebase,
|
| - base::TimeDelta* interval) {
|
| - return surface_->GetVSyncParameters(timebase, interval);
|
| +void GLSurfaceAdapter::GetVSyncParameters(const UpdateVSyncCallback& callback) {
|
| + surface_->GetVSyncParameters(callback);
|
| }
|
|
|
| GLSurfaceAdapter::~GLSurfaceAdapter() {}
|
|
|