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

Unified Diff: chrome/browser/privacy_blacklist/blacklist_io.cc

Issue 523138: Make the error_string parameter a reference instead of a pointer to enforce (Closed)
Patch Set: use DCHECK instead. Created 10 years, 11 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/privacy_blacklist/blacklist_io.cc
diff --git a/chrome/browser/privacy_blacklist/blacklist_io.cc b/chrome/browser/privacy_blacklist/blacklist_io.cc
index b6ff2606b1f66357b8ca8223a6ff55db0c520533..10f09dc54a485df34c106198c1adb544ea1e21aa 100644
--- a/chrome/browser/privacy_blacklist/blacklist_io.cc
+++ b/chrome/browser/privacy_blacklist/blacklist_io.cc
@@ -47,6 +47,7 @@ bool BlacklistIO::ReadText(Blacklist* blacklist,
const FilePath& path,
std::string* error_string) {
DCHECK(blacklist);
+ DCHECK(error_string);
// Memory map for efficient parsing. If the file cannot fit in available
// memory it would be the least of our worries. Typical blacklist files
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698