chromium/chrome/browser/performance_manager/policies/background_tab_loading_policy_helpers.cc

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

#include "chrome/browser/performance_manager/policies/background_tab_loading_policy_helpers.h"

#include <math.h>

#include <algorithm>
#include <limits>

#include "base/check_op.h"

namespace performance_manager {

namespace policies {

size_t CalculateMaxSimultaneousTabLoads(size_t lower_bound,
                                        size_t upper_bound,
                                        size_t cores_per_load,
                                        size_t num_cores) {}

float CalculateAgeScore(double last_visibility_change_seconds) {}

}  // namespace policies

}  // namespace performance_manager