blob: 6caf65b015ca76dc5398b98f2d1648333d2aa556 [file] [log] [blame]
// Copyright 2021 The Chromium Authors
// 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