// 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. #ifndef CONTENT_BROWSER_MEMORY_SWAP_METRICS_DRIVER_IMPL_H_ #define CONTENT_BROWSER_MEMORY_SWAP_METRICS_DRIVER_IMPL_H_ #include <memory> #include "base/gtest_prod_util.h" #include "base/sequence_checker.h" #include "base/time/time.h" #include "base/timer/timer.h" #include "content/common/content_export.h" #include "content/public/browser/swap_metrics_driver.h" namespace content { // SwapMetricsDriverImpl is the platform independent portion of the // SwapMetricsDriver implementation. class CONTENT_EXPORT SwapMetricsDriverImpl : public SwapMetricsDriver { … }; } // namespace content #endif // CONTENT_BROWSER_MEMORY_SWAP_METRICS_DRIVER_IMPL_H_