chromium/components/performance_manager/execution_context_priority/execution_context_priority.cc

// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "components/performance_manager/public/execution_context_priority/execution_context_priority.h"

#include <cstring>

namespace performance_manager {
namespace execution_context_priority {

int ReasonCompare(const char* reason1, const char* reason2) {}

/////////////////////////////////////////////////////////////////////
// PriorityAndReason

int PriorityAndReason::Compare(const PriorityAndReason& other) const {}

bool PriorityAndReason::operator==(const PriorityAndReason& other) const {}

bool PriorityAndReason::operator!=(const PriorityAndReason& other) const {}

bool PriorityAndReason::operator<=(const PriorityAndReason& other) const {}

bool PriorityAndReason::operator>=(const PriorityAndReason& other) const {}

bool PriorityAndReason::operator<(const PriorityAndReason& other) const {}

bool PriorityAndReason::operator>(const PriorityAndReason& other) const {}

}  // namespace execution_context_priority
}  // namespace performance_manager