| Index: base/sys_info_chromeos.cc
|
| diff --git a/base/sys_info_chromeos.cc b/base/sys_info_chromeos.cc
|
| index 7cf6975346000d98486715518bbcc4e84203cd07..4f32f9bfe63c2dc8679a900834b14aa60d3b508a 100644
|
| --- a/base/sys_info_chromeos.cc
|
| +++ b/base/sys_info_chromeos.cc
|
| @@ -7,6 +7,7 @@
|
| #include "base/basictypes.h"
|
| #include "base/environment.h"
|
| #include "base/file_util.h"
|
| +#include "base/files/file.h"
|
| #include "base/files/file_path.h"
|
| #include "base/lazy_instance.h"
|
| #include "base/strings/string_number_conversions.h"
|
| @@ -71,7 +72,7 @@ class ChromeOSVersionInfo {
|
| ThreadRestrictions::ScopedAllowIO allow_io;
|
| FilePath path(kLinuxStandardBaseReleaseFile);
|
| ReadFileToString(path, &lsb_release);
|
| - PlatformFileInfo fileinfo;
|
| + File::Info fileinfo;
|
| if (GetFileInfo(path, &fileinfo))
|
| lsb_release_time_ = fileinfo.creation_time;
|
| }
|
|
|