Index: gpu/command_buffer/service/gpu_processor_mac.cc |
diff --git a/gpu/command_buffer/service/gpu_processor_mac.cc b/gpu/command_buffer/service/gpu_processor_mac.cc |
index 4d9ba185d2b1cb58918ca56cbc12b7476ef42837..757de57c89c9afa858ca056a9af0cb00c45b088a 100644 |
--- a/gpu/command_buffer/service/gpu_processor_mac.cc |
+++ b/gpu/command_buffer/service/gpu_processor_mac.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; |
@@ -53,6 +55,7 @@ bool GPUProcessor::Initialize(gfx::PluginWindowHandle window, |
return InitializeCommon(context.release(), |
size, |
+ disallowed_extensions, |
allowed_extensions, |
attribs, |
parent_decoder, |