blob: e210e94f92b00a2c0155fa9b6d6951b3341afaf0 [file] [log] [blame]
// Copyright 2015 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.
#ifndef CHROME_BROWSER_METRICS_METRICS_MEMORY_DETAILS_H_
#define CHROME_BROWSER_METRICS_METRICS_MEMORY_DETAILS_H_
#include <map>
#include "base/callback.h"
#include "base/macros.h"
#include "build/build_config.h"
#include "chrome/browser/memory_details.h"
// Handles asynchronous fetching of memory details and logging histograms about
// memory use of various processes.
// Will run the provided callback when finished.
class MetricsMemoryDetails : public MemoryDetails {
public:
explicit MetricsMemoryDetails(const base::Closure& callback);
protected:
~MetricsMemoryDetails() override;
// MemoryDetails:
void OnDetailsAvailable() override;
private:
// Updates the global histograms for tracking memory usage.
void UpdateHistograms();
void UpdateSiteIsolationMetrics(int all_renderer_count,
int non_renderer_count);
base::Closure callback_;
DISALLOW_COPY_AND_ASSIGN(MetricsMemoryDetails);
};
#endif // CHROME_BROWSER_METRICS_METRICS_MEMORY_DETAILS_H_