blob: af745fb0b29b54a59f897abd49a2713ef1fe71bc [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_MEMORY_OOM_MEMORY_DETAILS_H_
#define CHROME_BROWSER_MEMORY_OOM_MEMORY_DETAILS_H_
#include <string>
#include "base/macros.h"
#include "base/time/time.h"
#include "chrome/browser/memory_details.h"
namespace memory {
////////////////////////////////////////////////////////////////////////////////
// OomMemoryDetails logs details about all Chrome processes during an out-of-
// memory event in an attempt to identify the culprit.
class OomMemoryDetails : public MemoryDetails {
public:
// Logs the memory details asynchronously.
// The |title| is printed at the beginning of the message.
static void Log(const std::string& title);
private:
OomMemoryDetails(const std::string& title);
~OomMemoryDetails() override;
// MemoryDetails overrides:
void OnDetailsAvailable() override;
std::string title_;
base::TimeTicks start_time_;
DISALLOW_COPY_AND_ASSIGN(OomMemoryDetails);
};
} // namespace memory
#endif // CHROME_BROWSER_MEMORY_OOM_MEMORY_DETAILS_H_