| Index: content/common/gpu/gpu_channel_manager.cc
|
| diff --git a/content/common/gpu/gpu_channel_manager.cc b/content/common/gpu/gpu_channel_manager.cc
|
| index 4cec7cb3c8114656a0138f24c144935a56bebb1f..7d26d183995e29436a6fc077b8ab2c49d1397fed 100644
|
| --- a/content/common/gpu/gpu_channel_manager.cc
|
| +++ b/content/common/gpu/gpu_channel_manager.cc
|
| @@ -81,7 +81,9 @@ class GpuChannelManagerMessageFilter : public IPC::MessageFilter {
|
|
|
| gfx::GpuMemoryBufferType GetGpuMemoryBufferFactoryType() {
|
| std::vector<gfx::GpuMemoryBufferType> supported_types;
|
| - GpuMemoryBufferFactory::GetSupportedTypes(&supported_types);
|
| + // TODO(reveman): No support for native PERSISTENT_MAP. crbug.com/489438
|
| + GpuMemoryBufferFactory::GetSupportedTypes(gfx::GpuMemoryBuffer::MAP,
|
| + &supported_types);
|
| DCHECK(!supported_types.empty());
|
| return supported_types[0];
|
| }
|
|
|