| Index: gpu/command_buffer/service/gpu_processor_linux.cc
|
| diff --git a/gpu/command_buffer/service/gpu_processor_linux.cc b/gpu/command_buffer/service/gpu_processor_linux.cc
|
| index cca86635fb12c761324ec4dda4789a699932b0cb..5627d63025edb513c12cea2588382bcc19e6ea99 100644
|
| --- a/gpu/command_buffer/service/gpu_processor_linux.cc
|
| +++ b/gpu/command_buffer/service/gpu_processor_linux.cc
|
| @@ -9,12 +9,14 @@ using ::base::SharedMemory;
|
|
|
| namespace gpu {
|
|
|
| -bool GPUProcessor::Initialize(gfx::PluginWindowHandle window,
|
| - const gfx::Size& size,
|
| - const char* allowed_extensions,
|
| - const std::vector<int32>& attribs,
|
| - GPUProcessor* parent,
|
| - uint32 parent_texture_id) {
|
| +bool GPUProcessor::Initialize(
|
| + gfx::PluginWindowHandle window,
|
| + const gfx::Size& size,
|
| + const gles2::DisallowedExtensions& disallowed_extensions,
|
| + const char* allowed_extensions,
|
| + const std::vector<int32>& attribs,
|
| + GPUProcessor* parent,
|
| + uint32 parent_texture_id) {
|
| // Get the parent decoder and the GLContext to share IDs with, if any.
|
| gles2::GLES2Decoder* parent_decoder = NULL;
|
| gfx::GLContext* parent_context = NULL;
|
| @@ -45,6 +47,7 @@ bool GPUProcessor::Initialize(gfx::PluginWindowHandle window,
|
|
|
| return InitializeCommon(context.release(),
|
| size,
|
| + disallowed_extensions,
|
| allowed_extensions,
|
| attribs,
|
| parent_decoder,
|
|
|