Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(357)

Unified Diff: power_prefs.cc

Issue 2689004: Convert 'char *' to 'char*' throughout power manager. (Closed) Base URL: ssh://git@chromiumos-git/power_manager.git
Patch Set: Created 10 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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))

Powered by Google App Engine
This is Rietveld 408576698