| Index: chrome/app/chrome_main_delegate.cc
|
| diff --git a/chrome/app/chrome_main_delegate.cc b/chrome/app/chrome_main_delegate.cc
|
| index fe8f717475f1066996645e949f04dadecaa28545..150e8c9995f8077608a3b02d5c771cdc156d52eb 100644
|
| --- a/chrome/app/chrome_main_delegate.cc
|
| +++ b/chrome/app/chrome_main_delegate.cc
|
| @@ -145,7 +145,7 @@ bool HasDeprecatedArguments(const std::wstring& command_line) {
|
| const wchar_t kChromeHtml[] = L"chromehtml:";
|
| std::wstring command_line_lower = command_line;
|
| // We are only searching for ASCII characters so this is OK.
|
| - StringToLowerASCII(&command_line_lower);
|
| + base::StringToLowerASCII(&command_line_lower);
|
| std::wstring::size_type pos = command_line_lower.find(kChromeHtml);
|
| return (pos != std::wstring::npos);
|
| }
|
|
|