Index: chrome/test/chromedriver/server/http_handler.cc |
diff --git a/chrome/test/chromedriver/server/http_handler.cc b/chrome/test/chromedriver/server/http_handler.cc |
index 1d8baf0259664ad88dea3975bb378bcb36f4be76..e7150557baf853380ab56f3aec8bf12eaaddd0fd 100644 |
--- a/chrome/test/chromedriver/server/http_handler.cc |
+++ b/chrome/test/chromedriver/server/http_handler.cc |
@@ -694,7 +694,7 @@ namespace internal { |
const char kNewSessionPathPattern[] = "session"; |
bool MatchesMethod(HttpMethod command_method, const std::string& method) { |
- std::string lower_method = StringToLowerASCII(method); |
+ std::string lower_method = base::StringToLowerASCII(method); |
switch (command_method) { |
case kGet: |
return lower_method == "get"; |