blob: dd74664ca33a7dc4ca4e06e1080141e13660a70e [file] [log] [blame]
// Copyright 2021 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 "content/public/browser/swap_metrics_driver.h"
#include <memory>
#include "base/notreached.h"
#include "base/time/time.h"
namespace content {
// static
std::unique_ptr<SwapMetricsDriver> SwapMetricsDriver::Create(
std::unique_ptr<Delegate> delegate,
const base::TimeDelta update_interval) {
// TODO(crbug.com/1234304): Implement the driver on Fuchsia.
NOTIMPLEMENTED_LOG_ONCE();
return nullptr;
}
} // namespace content