xref: /aosp_15_r20/external/libpalmrejection/chrome_to_android_compatibility.cc (revision 385f2b9352baca56113422de7d5392250974f582)
1 // Copyright 2022 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 
5 #include "chrome_to_android_compatibility.h"
6 
7 // Android's external/libchrome directory is out of date.
8 // Add missing templates here as a temporary solution
9 namespace base {
10 
operator ==(const TimeTicks & t1,const TimeTicks & t2)11 bool operator==(const TimeTicks& t1, const TimeTicks& t2) {
12   return t1.since_origin() == t2.since_origin();
13 }
14 
15 }  // namespace base
16