Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3850)

Unified Diff: chrome/browser/shell_integration_linux.cc

Issue 1358513003: Use correct IntToString variants in //chrome (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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();
}

Powered by Google App Engine
This is Rietveld 408576698