| Index: content/common/gpu/image_transport_surface_android.cc
|
| diff --git a/content/common/gpu/image_transport_surface_android.cc b/content/common/gpu/image_transport_surface_android.cc
|
| index 56030ef080b28cbfde0e6383d36af0fdffbe4ba6..6d67df285a7746650139872627e8ae5d95cf94a4 100644
|
| --- a/content/common/gpu/image_transport_surface_android.cc
|
| +++ b/content/common/gpu/image_transport_surface_android.cc
|
| @@ -59,7 +59,7 @@
|
| gfx::GLSurface* surface);
|
|
|
| // gfx::GLSurface implementation.
|
| - gfx::SwapResult SwapBuffers() override;
|
| + bool SwapBuffers() override;
|
|
|
| protected:
|
| ~DirectSurfaceAndroid() override;
|
| @@ -123,7 +123,7 @@
|
|
|
| DirectSurfaceAndroid::~DirectSurfaceAndroid() {}
|
|
|
| -gfx::SwapResult DirectSurfaceAndroid::SwapBuffers() {
|
| +bool DirectSurfaceAndroid::SwapBuffers() {
|
| DidAccessGpu();
|
| return PassThroughImageTransportSurface::SwapBuffers();
|
| }
|
|
|