[update_engine] Update to use not-hideously-old logging API from chrome

BUG=None
TEST=compile

Change-Id: Ieed8952b6806a72b59e16c1579f7293b6a98157a

Review URL: http://codereview.chromium.org/3170010
diff --git a/prefs.cc b/prefs.cc
index 39f5908..7e98e79 100644
--- a/prefs.cc
+++ b/prefs.cc
@@ -6,6 +6,7 @@
 
 #include "base/file_util.h"
 #include "base/logging.h"
+#include "base/string_number_conversions.h"
 #include "base/string_util.h"
 #include "update_engine/utils.h"
 
@@ -45,12 +46,12 @@
   string str_value;
   TEST_AND_RETURN_FALSE(GetString(key, &str_value));
   TrimWhitespaceASCII(str_value, TRIM_ALL, &str_value);
-  TEST_AND_RETURN_FALSE(StringToInt64(str_value, value));
+  TEST_AND_RETURN_FALSE(base::StringToInt64(str_value, value));
   return true;
 }
 
 bool Prefs::SetInt64(const string& key, const int64_t value) {
-  return SetString(key, Int64ToString(value));
+  return SetString(key, base::Int64ToString(value));
 }
 
 bool Prefs::GetFileNameForKey(const std::string& key, FilePath* filename) {