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

Unified Diff: components/data_reduction_proxy/core/browser/data_usage_store.cc

Issue 2378463002: Remove unnecessary DCHECK in BucketOverlapsInterval(). (Closed)
Patch Set: Remove DCHECK only Created 4 years, 3 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: components/data_reduction_proxy/core/browser/data_usage_store.cc
diff --git a/components/data_reduction_proxy/core/browser/data_usage_store.cc b/components/data_reduction_proxy/core/browser/data_usage_store.cc
index ed8b6cf7f1ca775169009a8101ab4db1918f9177..98bcbbd0ed433bf750933983259f567349dc910b 100644
--- a/components/data_reduction_proxy/core/browser/data_usage_store.cc
+++ b/components/data_reduction_proxy/core/browser/data_usage_store.cc
@@ -225,7 +225,6 @@ bool DataUsageStore::BucketOverlapsInterval(
const base::Time& start_interval,
const base::Time& end_interval) {
DCHECK(!bucket_last_updated.is_null());
- DCHECK(!start_interval.is_null());
DCHECK(!end_interval.is_null());
DCHECK_LE(start_interval, end_interval);
« 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