[Android] Expose method for UI to force composites
[chromium-blink-merge.git] / media / base / ranges.cc
blobb7b2b55adb893b62e07d213141eb49de6cd5e07c
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.
5 #include "media/base/ranges.h"
7 namespace media {
9 template<>
10 void Ranges<base::TimeDelta>::DCheckLT(const base::TimeDelta& lhs,
11 const base::TimeDelta& rhs) const {
12 DCHECK(lhs < rhs) << lhs.ToInternalValue() << " < " << rhs.ToInternalValue();
15 } // namespace media