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

content / browser / memory / swap_metrics_driver_impl_win.cc [blame]

// Copyright 2017 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/time/time.h"

namespace content {

// static
std::unique_ptr<SwapMetricsDriver> SwapMetricsDriver::Create(
    std::unique_ptr<Delegate> delegate,
    const base::TimeDelta update_interval) {
  // SwapMetricsDriver isn't available on Windows for now.
  // TODO(bashi): Figure out a way to measure swap rates on Windows.
  return nullptr;
}

}  // namespace content