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

Unified Diff: chrome/browser/ui/metro_pin_tab_helper_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
« no previous file with comments | « chrome/browser/ui/libgtk2ui/app_indicator_icon.cc ('k') | chrome/browser/ui/network_profile_bubble.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/metro_pin_tab_helper_win.cc
diff --git a/chrome/browser/ui/metro_pin_tab_helper_win.cc b/chrome/browser/ui/metro_pin_tab_helper_win.cc
index 10736d94c32352642ed6a8c2ee507dccd0ce9fdd..15a47e2ea16684d9f9b9dcd2ad368c87219a3c9c 100644
--- a/chrome/browser/ui/metro_pin_tab_helper_win.cc
+++ b/chrome/browser/ui/metro_pin_tab_helper_win.cc
@@ -108,9 +108,9 @@ bool CreateSiteSpecificLogo(const SkBitmap& bitmap,
return false;
*logo_path = logo_dir.Append(tile_id).ReplaceExtension(L".png");
- return file_util::WriteFile(*logo_path,
- reinterpret_cast<char*>(&logo_png[0]),
- logo_png.size()) > 0;
+ return base::WriteFile(*logo_path,
+ reinterpret_cast<char*>(&logo_png[0]),
+ logo_png.size()) > 0;
}
// Get the path to the backup logo. If the backup logo already exists in
« no previous file with comments | « chrome/browser/ui/libgtk2ui/app_indicator_icon.cc ('k') | chrome/browser/ui/network_profile_bubble.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698