| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "base/logging.h" |
| 6 #include "content/common/gpu/image_transport_surface.h" |
| 7 |
| 8 // static |
| 9 scoped_refptr<gfx::GLSurface> ImageTransportSurface::CreateSurface( |
| 10 GpuChannelManager* manager, |
| 11 GpuCommandBufferStub* stub, |
| 12 gfx::PluginWindowHandle handle) { |
| 13 NOTIMPLEMENTED(); |
| 14 return NULL; |
| 15 } |
| OLD | NEW |