| Index: chrome/common/crash_keys.cc
 | 
| diff --git a/chrome/common/crash_keys.cc b/chrome/common/crash_keys.cc
 | 
| index d9be107d7cf974393f68864126c344b78fc0abf3..c44f1bfc873e299bfdf0d8cb3e51c0115d6c77ea 100644
 | 
| --- a/chrome/common/crash_keys.cc
 | 
| +++ b/chrome/common/crash_keys.cc
 | 
| @@ -339,11 +339,11 @@ static bool IsBoringSwitch(const std::string& flag) {
 | 
|  
 | 
|  #if defined(OS_WIN)
 | 
|    // Just about everything has this, don't bother.
 | 
| -  if (StartsWithASCII(flag, "/prefetch:", true))
 | 
| +  if (base::StartsWithASCII(flag, "/prefetch:", true))
 | 
|      return true;
 | 
|  #endif
 | 
|  
 | 
| -  if (!StartsWithASCII(flag, "--", true))
 | 
| +  if (!base::StartsWithASCII(flag, "--", true))
 | 
|      return false;
 | 
|    size_t end = flag.find("=");
 | 
|    size_t len = (end == std::string::npos) ? flag.length() - 2 : end - 2;
 | 
| 
 |