Index: chrome/browser/shell_integration_win.cc |
diff --git a/chrome/browser/shell_integration_win.cc b/chrome/browser/shell_integration_win.cc |
index 860c23967c9f6b118d18239a7335664c5bcf8ce3..a8e4e5ca5fc5f41c8378d993c07274f6efd34617 100644 |
--- a/chrome/browser/shell_integration_win.cc |
+++ b/chrome/browser/shell_integration_win.cc |
@@ -386,7 +386,7 @@ bool ShellIntegration::IsFirefoxDefaultBrowser() { |
base::string16 app_cmd; |
if (key.Valid() && (key.ReadValue(L"", &app_cmd) == ERROR_SUCCESS) && |
base::string16::npos != |
- base::StringToLowerASCII(app_cmd).find(L"firefox")) |
+ base::ToLowerASCII(app_cmd).find(L"firefox")) |
ff_default = true; |
} |
return ff_default; |