Chromium Code Reviews| Index: power_prefs.cc |
| diff --git a/power_prefs.cc b/power_prefs.cc |
| index a52f892465a389cd97fc692582818ce2e4b1e033..64b35e5d3ee1f632fea8b376c1c630dd23e18859 100644 |
| --- a/power_prefs.cc |
| +++ b/power_prefs.cc |
| @@ -17,7 +17,7 @@ namespace power_manager { |
| PowerPrefs::PowerPrefs(const FilePath& base_path) |
| : base_path_(base_path) {} |
| -bool PowerPrefs::ReadSetting(const char* setting_name, int64 *val) { |
| +bool PowerPrefs::ReadSetting(const char* setting_name, int64* val) { |
| FilePath path = base_path_.Append(setting_name); |
|
tfarina
2010/06/05 01:08:56
David, I was going to do this change, but since I'
|
| string buf; |
| if (!file_util::ReadFileToString(path, &buf)) |