| Index: chrome/browser/shell_integration_win.cc
|
| diff --git a/chrome/browser/shell_integration_win.cc b/chrome/browser/shell_integration_win.cc
|
| index 1ab07a6569c2cc18c39e3db60070f0cdd4ed0073..4e0af293dd33e493ef3c385ca1c15d3b9de7397a 100644
|
| --- a/chrome/browser/shell_integration_win.cc
|
| +++ b/chrome/browser/shell_integration_win.cc
|
| @@ -73,8 +73,8 @@ base::string16 GetProfileIdFromPath(const base::FilePath& profile_path) {
|
|
|
| // Generate profile_id from sanitized basenames.
|
| for (size_t i = 0; i < basenames.length(); ++i) {
|
| - if (IsAsciiAlpha(basenames[i]) ||
|
| - IsAsciiDigit(basenames[i]) ||
|
| + if (base::IsAsciiAlpha(basenames[i]) ||
|
| + base::IsAsciiDigit(basenames[i]) ||
|
| basenames[i] == L'.')
|
| profile_id += basenames[i];
|
| }
|
|
|