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

Unified Diff: trunk/src/chrome/browser/safe_browsing/prefix_set.cc

Issue 105823009: Revert 239280 "Move more file_util functions to base namespace." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years 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: trunk/src/chrome/browser/safe_browsing/prefix_set.cc
===================================================================
--- trunk/src/chrome/browser/safe_browsing/prefix_set.cc (revision 239399)
+++ trunk/src/chrome/browser/safe_browsing/prefix_set.cc (working copy)
@@ -160,7 +160,7 @@
if (size_64 < static_cast<int64>(sizeof(FileHeader) + sizeof(MD5Digest)))
return NULL;
- file_util::ScopedFILE file(base::OpenFile(filter_name, "rb"));
+ file_util::ScopedFILE file(file_util::OpenFile(filter_name, "rb"));
if (!file.get())
return NULL;
@@ -243,7 +243,7 @@
return false;
}
- file_util::ScopedFILE file(base::OpenFile(filter_name, "wb"));
+ file_util::ScopedFILE file(file_util::OpenFile(filter_name, "wb"));
if (!file.get())
return false;

Powered by Google App Engine
This is Rietveld 408576698