| Index: content/common/gpu/image_transport_surface_linux.cc
|
| diff --git a/content/common/gpu/image_transport_surface_linux.cc b/content/common/gpu/image_transport_surface_linux.cc
|
| index 238d74d42c9afd2484481d01c5086926cf0dcea6..b648b197c5c525225c50bf2193605b134b3a22ed 100644
|
| --- a/content/common/gpu/image_transport_surface_linux.cc
|
| +++ b/content/common/gpu/image_transport_surface_linux.cc
|
| @@ -12,14 +12,13 @@ scoped_refptr<gfx::GLSurface> ImageTransportSurface::CreateNativeSurface(
|
| GpuCommandBufferStub* stub,
|
| const gfx::GLSurfaceHandle& handle) {
|
| DCHECK(handle.handle);
|
| - DCHECK(handle.transport_type == gfx::NATIVE_DIRECT ||
|
| - handle.transport_type == gfx::NATIVE_TRANSPORT);
|
| + DCHECK(handle.transport_type == gfx::NATIVE_DIRECT);
|
| scoped_refptr<gfx::GLSurface> surface =
|
| gfx::GLSurface::CreateViewGLSurface(handle.handle);
|
| if (!surface.get())
|
| return surface;
|
| return scoped_refptr<gfx::GLSurface>(new PassThroughImageTransportSurface(
|
| - manager, stub, surface.get(), handle.is_transport()));
|
| + manager, stub, surface.get()));
|
| }
|
|
|
| } // namespace content
|
|
|