Commit 5f48b80b authored by Wez's avatar Wez Committed by Commit Bot

Add stub base::CurrentProcessInfo::CreationTime() implementation.

Bug: 726484, 881333
Change-Id: I9b779a087d20dda8f3f0a58ffb70fbbea1e6e601
Reviewed-on: https://chromium-review.googlesource.com/1210382Reviewed-by: default avatarAlbert J. Wong <ajwong@chromium.org>
Reviewed-by: default avatarScott Graham <scottmg@chromium.org>
Commit-Queue: Wez <wez@chromium.org>
Cr-Commit-Position: refs/heads/master@{#590120}
parent 6e18cb2b
...@@ -1430,6 +1430,7 @@ jumbo_component("base") { ...@@ -1430,6 +1430,7 @@ jumbo_component("base") {
"process/memory_fuchsia.cc", "process/memory_fuchsia.cc",
"process/process_fuchsia.cc", "process/process_fuchsia.cc",
"process/process_handle_fuchsia.cc", "process/process_handle_fuchsia.cc",
"process/process_info_fuchsia.cc",
"process/process_iterator_fuchsia.cc", "process/process_iterator_fuchsia.cc",
"process/process_metrics_fuchsia.cc", "process/process_metrics_fuchsia.cc",
"process/process_metrics_posix.cc", "process/process_metrics_posix.cc",
......
// Copyright 2018 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.
#include "base/process/process_info.h"
#include "base/time/time.h"
namespace base {
// static
const Time CurrentProcessInfo::CreationTime() {
// TODO(https://crbug.com/726484): There is no syscall providing this data.
return Time();
}
} // namespace base
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment