1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 // Note: ported from Chromium commit head: a4f94d3 5 6 #include "ranges.h" 7 8 namespace media { 9 10 template<> DCheckLT(const base::TimeDelta & lhs,const base::TimeDelta & rhs) const11void Ranges<base::TimeDelta>::DCheckLT(const base::TimeDelta& lhs, 12 const base::TimeDelta& rhs) const { 13 DCHECK(lhs < rhs) << lhs.ToInternalValue() << " < " << rhs.ToInternalValue(); 14 } 15 16 } // namespace media 17