Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(34)

Side by Side Diff: base/process/process_info_win.cc

Issue 21302005: Add CurrentProcessInfo::CreationTime() for Linux (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix mac Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « base/process/process_info_mac.cc ('k') | base/process/process_metrics_linux.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/process/process_info.h" 5 #include "base/process/process_info.h"
6 6
7 #include <windows.h> 7 #include <windows.h>
8 8
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "base/time/time.h" 10 #include "base/time/time.h"
11 11
12 namespace { 12 namespace base {
13 13
14 using base::Time; 14 //static
15 15 const Time CurrentProcessInfo::CreationTime() {
16 // Returns the process creation time, or NULL if an error occurred.
17 Time* ProcessCreationTimeInternal() {
18 FILETIME creation_time = {}; 16 FILETIME creation_time = {};
19 FILETIME ignore = {}; 17 FILETIME ignore = {};
20 if (::GetProcessTimes(::GetCurrentProcess(), &creation_time, &ignore, 18 if (::GetProcessTimes(::GetCurrentProcess(), &creation_time, &ignore,
21 &ignore, &ignore) == false) 19 &ignore, &ignore) == false)
22 return NULL; 20 return Time();
23 21
24 return new Time(Time::FromFileTime(creation_time)); 22 return Time::FromFileTime(creation_time);
25 }
26
27 } // namespace
28
29 namespace base {
30
31 //static
32 const Time* CurrentProcessInfo::CreationTime() {
33 static Time* process_creation_time = ProcessCreationTimeInternal();
34 return process_creation_time;
35 } 23 }
36 24
37 } // namespace base 25 } // namespace base
OLDNEW
« no previous file with comments | « base/process/process_info_mac.cc ('k') | base/process/process_metrics_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698