| Index: chrome/browser/web_applications/web_app_win.cc
|
| diff --git a/chrome/browser/web_applications/web_app_win.cc b/chrome/browser/web_applications/web_app_win.cc
|
| index 399b0869010d73ca468f784903c0d934a29312d1..64b667f731a81fcf97fe0faef1019a20d9b4bd8e 100644
|
| --- a/chrome/browser/web_applications/web_app_win.cc
|
| +++ b/chrome/browser/web_applications/web_app_win.cc
|
| @@ -154,7 +154,7 @@ std::vector<base::FilePath> MatchingShortcutsForProfileAndExtension(
|
| base::FilePath shortcut_file = base_path;
|
| if (i) {
|
| shortcut_file = shortcut_file.InsertBeforeExtensionASCII(
|
| - StringPrintf(" (%d)", i));
|
| + base::StringPrintf(" (%d)", i));
|
| }
|
| if (file_util::PathExists(shortcut_file) &&
|
| ShortcutIsForProfile(shortcut_file, profile_path)) {
|
| @@ -281,7 +281,7 @@ bool CreatePlatformShortcuts(
|
| continue;
|
| } else if (unique_number > 0) {
|
| shortcut_file = shortcut_file.InsertBeforeExtensionASCII(
|
| - StringPrintf(" (%d)", unique_number));
|
| + base::StringPrintf(" (%d)", unique_number));
|
| }
|
|
|
| base::win::ShortcutProperties shortcut_properties;
|
|
|