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 6d67df285a7746650139872627e8ae5d95cf94a4..56030ef080b28cbfde0e6383d36af0fdffbe4ba6 100644 |
--- a/content/common/gpu/image_transport_surface_android.cc |
+++ b/content/common/gpu/image_transport_surface_android.cc |
@@ -59,7 +59,7 @@ class DirectSurfaceAndroid : public PassThroughImageTransportSurface { |
gfx::GLSurface* surface); |
// gfx::GLSurface implementation. |
- bool SwapBuffers() override; |
+ gfx::SwapResult SwapBuffers() override; |
protected: |
~DirectSurfaceAndroid() override; |
@@ -123,7 +123,7 @@ DirectSurfaceAndroid::DirectSurfaceAndroid(GpuChannelManager* manager, |
DirectSurfaceAndroid::~DirectSurfaceAndroid() {} |
-bool DirectSurfaceAndroid::SwapBuffers() { |
+gfx::SwapResult DirectSurfaceAndroid::SwapBuffers() { |
DidAccessGpu(); |
return PassThroughImageTransportSurface::SwapBuffers(); |
} |