Index: gpu/command_buffer/service/test_helper.cc |
diff --git a/gpu/command_buffer/service/test_helper.cc b/gpu/command_buffer/service/test_helper.cc |
index c589be4326a1a2698779bf881606d881b97bcdd0..2323808391c12b90cfcaf6d0d25be4fe3507e193 100644 |
--- a/gpu/command_buffer/service/test_helper.cc |
+++ b/gpu/command_buffer/service/test_helper.cc |
@@ -249,7 +249,7 @@ void TestHelper::SetupContextGroupInitExpectations( |
SetupFeatureInfoInitExpectationsWithGLVersion(gl, extensions, "", gl_version); |
- std::string l_version(StringToLowerASCII(std::string(gl_version))); |
+ std::string l_version(base::StringToLowerASCII(std::string(gl_version))); |
bool is_es3 = (l_version.substr(0, 12) == "opengl es 3."); |
EXPECT_CALL(*gl, GetIntegerv(GL_MAX_RENDERBUFFER_SIZE, _)) |
@@ -319,7 +319,7 @@ void TestHelper::SetupFeatureInfoInitExpectationsWithGLVersion( |
.WillOnce(Return(reinterpret_cast<const uint8*>(gl_version))) |
.RetiresOnSaturation(); |
- std::string l_version(StringToLowerASCII(std::string(gl_version))); |
+ std::string l_version(base::StringToLowerASCII(std::string(gl_version))); |
bool is_es3 = (l_version.substr(0, 12) == "opengl es 3."); |
if (strstr(extensions, "GL_ARB_texture_float") || |