| Index: chrome/browser/chromeos/version_loader.cc
|
| diff --git a/chrome/browser/chromeos/version_loader.cc b/chrome/browser/chromeos/version_loader.cc
|
| index 45b0a60f5aeb369633da76f4fb61223648f1638a..c0028e3962d0a4b73a8c316efdf7e5060aa22312 100644
|
| --- a/chrome/browser/chromeos/version_loader.cc
|
| +++ b/chrome/browser/chromeos/version_loader.cc
|
| @@ -11,6 +11,7 @@
|
| #include "base/message_loop.h"
|
| #include "base/string_split.h"
|
| #include "base/string_util.h"
|
| +#include "base/stringprintf.h"
|
| #include "base/threading/thread.h"
|
| #include "base/time.h"
|
| #include "chrome/browser/browser_process.h"
|
| @@ -168,10 +169,10 @@ void VersionLoader::Backend::GetVersion(
|
| if (file_util::GetFileInfo(file_path, &fileinfo)) {
|
| base::Time::Exploded ctime;
|
| fileinfo.creation_time.UTCExplode(&ctime);
|
| - version += StringPrintf("-%02u.%02u.%02u",
|
| - ctime.year % 100,
|
| - ctime.month,
|
| - ctime.day_of_month);
|
| + version += base::StringPrintf("-%02u.%02u.%02u",
|
| + ctime.year % 100,
|
| + ctime.month,
|
| + ctime.day_of_month);
|
| }
|
| }
|
|
|
|
|