1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23

content / browser / memory / swap_metrics_driver_impl_fuchsia.cc [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/40191902): Implement the driver on Fuchsia.
  NOTIMPLEMENTED_LOG_ONCE();
  return nullptr;
}

}  // namespace content