blob: 51fb7dd5640fba8c73bd9bedcac00065d2289fff [file] [log] [blame]
// Copyright 2019 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 "components/performance_manager/embedder/performance_manager_registry.h"
#include "components/performance_manager/performance_manager_registry_impl.h"
namespace performance_manager {
// static
std::unique_ptr<PerformanceManagerRegistry>
PerformanceManagerRegistry::Create() {
return std::make_unique<PerformanceManagerRegistryImpl>();
}
// static
PerformanceManagerRegistry* PerformanceManagerRegistry::GetInstance() {
return PerformanceManagerRegistryImpl::GetInstance();
}
} // namespace performance_manager