| Index: chrome/browser/profiles/profile_shortcut_manager_win.cc
|
| diff --git a/chrome/browser/profiles/profile_shortcut_manager_win.cc b/chrome/browser/profiles/profile_shortcut_manager_win.cc
|
| index 3314cbb75f1442b23d814099e7e11a0b45f5951f..1336ac626bdecf869a853a68569ee84c474d6d0c 100644
|
| --- a/chrome/browser/profiles/profile_shortcut_manager_win.cc
|
| +++ b/chrome/browser/profiles/profile_shortcut_manager_win.cc
|
| @@ -596,10 +596,10 @@ base::string16 SanitizeShortcutProfileNameString(
|
| pos = sanitized.find_first_of(kReservedCharacters, pos + 1);
|
| }
|
|
|
| - TrimWhitespace(sanitized, TRIM_LEADING, &sanitized);
|
| + base::TrimWhitespace(sanitized, base::TRIM_LEADING, &sanitized);
|
| if (sanitized.size() > kMaxProfileShortcutFileNameLength)
|
| sanitized.erase(kMaxProfileShortcutFileNameLength);
|
| - TrimWhitespace(sanitized, TRIM_TRAILING, &sanitized);
|
| + base::TrimWhitespace(sanitized, base::TRIM_TRAILING, &sanitized);
|
|
|
| return sanitized;
|
| }
|
|
|