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

Unified Diff: net/disk_cache/stats_histogram.h

Issue 7477008: Remove explicit keyword from multi-argument constructors (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 5 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 | « net/disk_cache/mapped_file_unittest.cc ('k') | net/ftp/ftp_network_transaction_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/disk_cache/stats_histogram.h
diff --git a/net/disk_cache/stats_histogram.h b/net/disk_cache/stats_histogram.h
index f41c384722c17e7f5cab8252b0030600c314395c..318a8bce77483bec4292dde7a2dd3aff139b13dc 100644
--- a/net/disk_cache/stats_histogram.h
+++ b/net/disk_cache/stats_histogram.h
@@ -30,8 +30,8 @@ class StatsHistogram : public base::Histogram {
}
};
- explicit StatsHistogram(const std::string& name, Sample minimum,
- Sample maximum, size_t bucket_count)
+ StatsHistogram(const std::string& name, Sample minimum,
+ Sample maximum, size_t bucket_count)
: Histogram(name, minimum, maximum, bucket_count), init_(false) {}
virtual ~StatsHistogram();
« no previous file with comments | « net/disk_cache/mapped_file_unittest.cc ('k') | net/ftp/ftp_network_transaction_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698