Index: chrome/browser/shell_integration_win.cc |
=================================================================== |
--- chrome/browser/shell_integration_win.cc (revision 30182) |
+++ chrome/browser/shell_integration_win.cc (working copy) |
@@ -115,11 +115,7 @@ |
std::wstring short_path; |
GetShortPathName(command_line.program().c_str(), |
WriteInto(&short_path, MAX_PATH), MAX_PATH); |
- if ((short_path.size() != short_app_path.size()) || |
- (!std::equal(short_path.begin(), |
- short_path.end(), |
- short_app_path.begin(), |
- CaseInsensitiveCompare<wchar_t>()))) |
+ if (!FilePath::CompareEqualIgnoreCase(short_path, short_app_path)) |
return NOT_DEFAULT_BROWSER; |
} |
} |