1*385f2b93SAndroid Build Coastguard Worker // Copyright 2022 The Chromium Authors. All rights reserved. 2*385f2b93SAndroid Build Coastguard Worker // Use of this source code is governed by a BSD-style license that can be 3*385f2b93SAndroid Build Coastguard Worker // found in the LICENSE file. 4*385f2b93SAndroid Build Coastguard Worker 5*385f2b93SAndroid Build Coastguard Worker #include "chrome_to_android_compatibility.h" 6*385f2b93SAndroid Build Coastguard Worker 7*385f2b93SAndroid Build Coastguard Worker // Android's external/libchrome directory is out of date. 8*385f2b93SAndroid Build Coastguard Worker // Add missing templates here as a temporary solution 9*385f2b93SAndroid Build Coastguard Worker namespace base { 10*385f2b93SAndroid Build Coastguard Worker operator ==(const TimeTicks & t1,const TimeTicks & t2)11*385f2b93SAndroid Build Coastguard Workerbool operator==(const TimeTicks& t1, const TimeTicks& t2) { 12*385f2b93SAndroid Build Coastguard Worker return t1.since_origin() == t2.since_origin(); 13*385f2b93SAndroid Build Coastguard Worker } 14*385f2b93SAndroid Build Coastguard Worker 15*385f2b93SAndroid Build Coastguard Worker } // namespace base 16