Index: google_apis/drive/test_util.cc |
diff --git a/google_apis/drive/test_util.cc b/google_apis/drive/test_util.cc |
index db14c9d7bb43b37e67b71a1fef7ce7a0547cfa90..c621809110eed0722289aac9e407ffa634fca2ed 100644 |
--- a/google_apis/drive/test_util.cc |
+++ b/google_apis/drive/test_util.cc |
@@ -26,7 +26,7 @@ namespace test_util { |
bool RemovePrefix(const std::string& input, |
const std::string& prefix, |
std::string* output) { |
- if (!StartsWithASCII(input, prefix, true /* case sensitive */)) |
+ if (!base::StartsWithASCII(input, prefix, true /* case sensitive */)) |
return false; |
*output = input.substr(prefix.size()); |