AU: Use Omaha ID rather than MAC address in delta updater
Review URL: http://codereview.chromium.org/467051
diff --git a/utils.h b/utils.h
index e475783..7920f3c 100644
--- a/utils.h
+++ b/utils.h
@@ -15,6 +15,10 @@
namespace utils {
+// Writes the data passed to path. The file at path will be overwritten if it
+// exists. Returns true on success, false otherwise.
+bool WriteFile(const char* path, const char* data, int data_len);
+
// Returns the entire contents of the file at path. Returns true on success.
bool ReadFile(const std::string& path, std::vector<char>* out);
bool ReadFileToString(const std::string& path, std::string* out);