| Index: content/common/gpu/gpu_command_buffer_stub.cc
|
| diff --git a/content/common/gpu/gpu_command_buffer_stub.cc b/content/common/gpu/gpu_command_buffer_stub.cc
|
| index 78c0a49aca22b6b9529e957ec4412b980f592fc4..5ca36ec3ba51af58f2bfcc1d6a3d9641e6e942b1 100644
|
| --- a/content/common/gpu/gpu_command_buffer_stub.cc
|
| +++ b/content/common/gpu/gpu_command_buffer_stub.cc
|
| @@ -37,10 +37,6 @@
|
| #include "content/public/common/sandbox_init.h"
|
| #endif
|
|
|
| -#if defined(OS_ANDROID)
|
| -#include "content/common/gpu/stream_texture_manager_android.h"
|
| -#endif
|
| -
|
| namespace content {
|
| namespace {
|
|
|
| @@ -141,15 +137,10 @@ GpuCommandBufferStub::GpuCommandBufferStub(
|
| if (share_group) {
|
| context_group_ = share_group->context_group_;
|
| } else {
|
| - gpu::StreamTextureManager* stream_texture_manager = NULL;
|
| -#if defined(OS_ANDROID)
|
| - stream_texture_manager = channel_->stream_texture_manager();
|
| -#endif
|
| context_group_ = new gpu::gles2::ContextGroup(
|
| mailbox_manager,
|
| image_manager,
|
| new GpuCommandBufferMemoryTracker(channel),
|
| - stream_texture_manager,
|
| true);
|
| }
|
| }
|
|
|