| Index: ui/gl/init/gl_factory.cc
|
| diff --git a/ui/gl/init/gl_factory.cc b/ui/gl/init/gl_factory.cc
|
| index 3fad83d450cede1be957098842d1c5b748a861c2..3c17fc777bfe178be221a9c13d742f99d6823e19 100644
|
| --- a/ui/gl/init/gl_factory.cc
|
| +++ b/ui/gl/init/gl_factory.cc
|
| @@ -43,7 +43,7 @@ bool InitializeGLOneOff() {
|
| impl = kGLImplementationEGLGLES2;
|
| } else {
|
| impl = GetNamedGLImplementation(requested_implementation_name);
|
| - if (!ContainsValue(allowed_impls, impl)) {
|
| + if (!base::ContainsValue(allowed_impls, impl)) {
|
| LOG(ERROR) << "Requested GL implementation is not available.";
|
| return false;
|
| }
|
|
|