| Index: ui/gl/gl_version_info.cc
|
| diff --git a/ui/gl/gl_version_info.cc b/ui/gl/gl_version_info.cc
|
| index 996c44f22cf4fd8c9c5b85c5abb3dd5574adb757..0d052b58dc62a62766a903b7be1d4653f9190fe0 100644
|
| --- a/ui/gl/gl_version_info.cc
|
| +++ b/ui/gl/gl_version_info.cc
|
| @@ -19,7 +19,7 @@ GLVersionInfo::GLVersionInfo(const char* version_str, const char* renderer_str)
|
| is_gl4(false),
|
| is_angle(false) {
|
| if (version_str) {
|
| - std::string lstr(StringToLowerASCII(std::string(version_str)));
|
| + std::string lstr(base::StringToLowerASCII(std::string(version_str)));
|
| is_es = (lstr.substr(0, 9) == "opengl es");
|
| if (is_es) {
|
| is_es1 = (lstr.substr(9, 2) == "-c" && lstr.substr(13, 2) == "1.");
|
|
|