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

Unified Diff: chrome/browser/safe_browsing/database_perftest.cc

Issue 17062: Keep trying to undo 7564. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 12 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 | « base/file_util_win.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/safe_browsing/database_perftest.cc
===================================================================
--- chrome/browser/safe_browsing/database_perftest.cc (revision 7571)
+++ chrome/browser/safe_browsing/database_perftest.cc (working copy)
@@ -467,7 +467,7 @@
int64 total_ms = total_timer.Elapsed().InMilliseconds();
- DLOG(INFO) << path_.BaseName() << " read " << keys_to_read <<
+ DLOG(INFO) << path_.BaseName().value() << " read " << keys_to_read <<
" entries in " << total_ms << " ms. " << keys_from_db <<
" keys were read from the db, with average read taking " <<
db_ms / keys_from_db << " ms";
@@ -486,7 +486,7 @@
int64 total_ms = total_timer.Elapsed().InMilliseconds();
- DLOG(INFO) << path_.BaseName() <<
+ DLOG(INFO) << path_.BaseName().value() <<
" built bloom filter in " << total_ms << " ms.";
}
« no previous file with comments | « base/file_util_win.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698