| Index: chrome/browser/history/text_database.cc
|
| diff --git a/chrome/browser/history/text_database.cc b/chrome/browser/history/text_database.cc
|
| index 60aa7fd39b4dcdf63ef1e2afa469f5ce5f2bf2d8..6bf32707a18f856c4989fdf4a95b6ff41ef653c2 100644
|
| --- a/chrome/browser/history/text_database.cc
|
| +++ b/chrome/browser/history/text_database.cc
|
| @@ -88,8 +88,8 @@ FilePath TextDatabase::IDToFileName(DBIdent id) {
|
| // scheme: the caller should assign IDs as it feels fit with the knowledge
|
| // that they will apppear on disk in this form.
|
| FilePath::StringType filename(file_base());
|
| - StringAppendF(&filename, FILE_PATH_LITERAL("%d-%02d"),
|
| - id / 100, id % 100);
|
| + base::StringAppendF(&filename, FILE_PATH_LITERAL("%d-%02d"),
|
| + id / 100, id % 100);
|
| return FilePath(filename);
|
| }
|
|
|
|
|