blob: cae7fe89a55f01c35e3ae9e30685681cfaedd0dd [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chromeos/dbus/cryptohome/account_identifier_operators.h"
namespace cryptohome {
bool operator<(const AccountIdentifier& l, const AccountIdentifier& r) {
return l.account_id() < r.account_id();
}
bool operator==(const AccountIdentifier& l, const AccountIdentifier& r) {
return l.account_id() == r.account_id();
}
} // namespace cryptohome