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

Unified Diff: chrome/browser/web_applications/web_app_win.cc

Issue 184563006: Move WriteFile and WriteFileDescriptor from file_util to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 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: chrome/browser/web_applications/web_app_win.cc
diff --git a/chrome/browser/web_applications/web_app_win.cc b/chrome/browser/web_applications/web_app_win.cc
index dc7a7ef695fa54391ae046f883bcd8a98293e62c..6539b56120472ba756b1b3f6e4a3bcb7a6c24d29 100644
--- a/chrome/browser/web_applications/web_app_win.cc
+++ b/chrome/browser/web_applications/web_app_win.cc
@@ -64,7 +64,7 @@ bool SaveIconWithCheckSum(const base::FilePath& icon_file,
GetImageCheckSum(image, &digest);
base::FilePath cheksum_file(icon_file.ReplaceExtension(kIconChecksumFileExt));
- return file_util::WriteFile(cheksum_file,
+ return base::WriteFile(cheksum_file,
reinterpret_cast<const char*>(&digest),
viettrungluu 2014/02/28 21:47:24 "
sizeof(digest)) == sizeof(digest);
}

Powered by Google App Engine
This is Rietveld 408576698