#include "chrome/browser/resource_coordinator/lifecycle_unit.h"
namespace resource_coordinator {
LifecycleUnit::SortKey::SortKey() = default;
LifecycleUnit::SortKey::SortKey(base::TimeTicks last_focused_time)
: … { … }
LifecycleUnit::SortKey::SortKey(const SortKey& other) = default;
LifecycleUnit::SortKey& LifecycleUnit::SortKey::operator=(
const SortKey& other) = default;
bool LifecycleUnit::SortKey::operator<(const SortKey& other) const { … }
bool LifecycleUnit::SortKey::operator>(const SortKey& other) const { … }
LifecycleUnit::~LifecycleUnit() = default;
}