| Index: chrome/browser/shell_integration_linux.cc
|
| diff --git a/chrome/browser/shell_integration_linux.cc b/chrome/browser/shell_integration_linux.cc
|
| index 6ca11d55156c49d55c5f282280a3f066a3b9aa0b..5994d97773c9728967969120ece89faa19fbc874 100644
|
| --- a/chrome/browser/shell_integration_linux.cc
|
| +++ b/chrome/browser/shell_integration_linux.cc
|
| @@ -692,7 +692,7 @@ base::FilePath GetWebShortcutFilename(const GURL& url) {
|
| for (size_t i = 1; i < 100; ++i) {
|
| if (base::PathExists(base::FilePath(alternative_filepath))) {
|
| alternative_filepath = base::FilePath(
|
| - filepath.value() + "_" + base::IntToString(i) + ".desktop");
|
| + filepath.value() + "_" + base::SizeTToString(i) + ".desktop");
|
| } else {
|
| return base::FilePath(alternative_filepath).BaseName();
|
| }
|
|
|