| Index: chrome/browser/importer/profile_writer.cc
|
| diff --git a/chrome/browser/importer/profile_writer.cc b/chrome/browser/importer/profile_writer.cc
|
| index 40fd5bed3571bb59c8841a60663a191f75ff26fa..2eb88eb621003c1c31a3fce6ea846d80094ccd7c 100644
|
| --- a/chrome/browser/importer/profile_writer.cc
|
| +++ b/chrome/browser/importer/profile_writer.cc
|
| @@ -61,7 +61,7 @@ base::string16 GenerateUniqueFolderName(BookmarkModel* model,
|
| // Otherwise iterate until we find a unique name.
|
| for (size_t i = 1; i <= existing_folder_names.size(); ++i) {
|
| base::string16 name = folder_name + base::ASCIIToUTF16(" (") +
|
| - base::IntToString16(i) + base::ASCIIToUTF16(")");
|
| + base::SizeTToString16(i) + base::ASCIIToUTF16(")");
|
| if (existing_folder_names.find(name) == existing_folder_names.end())
|
| return name;
|
| }
|
|
|