mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-25 06:46:09 +03:00
23 lines
558 B
C++
23 lines
558 B
C++
// Copyright 2013 The Chromium Authors
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#include "base/process/process_metrics.h"
|
|
|
|
#include <malloc/malloc.h>
|
|
|
|
#include "base/memory/ptr_util.h"
|
|
#include "base/notreached.h"
|
|
|
|
namespace base {
|
|
|
|
ProcessMetrics::ProcessMetrics(ProcessHandle process) : process_(process) {}
|
|
|
|
// static
|
|
std::unique_ptr<ProcessMetrics> ProcessMetrics::CreateProcessMetrics(
|
|
ProcessHandle process) {
|
|
return WrapUnique(new ProcessMetrics(process));
|
|
}
|
|
|
|
} // namespace base
|