| Index: gpu/command_buffer/service/context_group.cc
|
| diff --git a/gpu/command_buffer/service/context_group.cc b/gpu/command_buffer/service/context_group.cc
|
| index 90932fbdddc43cf68e849c8c37d3fa1ce00e347d..3ca824af351300ae4785dc3f4308f9c8ac5ac813 100644
|
| --- a/gpu/command_buffer/service/context_group.cc
|
| +++ b/gpu/command_buffer/service/context_group.cc
|
| @@ -77,15 +77,14 @@ static void GetIntegerv(GLenum pname, uint32* var) {
|
|
|
| bool ContextGroup::Initialize(
|
| GLES2Decoder* decoder,
|
| - const DisallowedFeatures& disallowed_features,
|
| - const char* allowed_features) {
|
| + const DisallowedFeatures& disallowed_features) {
|
| // If we've already initialized the group just add the context.
|
| if (HaveContexts()) {
|
| decoders_.push_back(base::AsWeakPtr<GLES2Decoder>(decoder));
|
| return true;
|
| }
|
|
|
| - if (!feature_info_->Initialize(disallowed_features, allowed_features)) {
|
| + if (!feature_info_->Initialize(disallowed_features)) {
|
| LOG(ERROR) << "ContextGroup::Initialize failed because FeatureInfo "
|
| << "initialization failed.";
|
| return false;
|
|
|