Revert 281133 "chrome.hid: enrich model with report IDs"
[chromium-blink-merge.git] / base / process / process_info.h
blobe9e7b4e815158124bce1d1d3c9cb7085e9f7220c
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
3 // found in the LICENSE file.
5 #ifndef BASE_PROCESS_PROCESS_PROCESS_INFO_H_
6 #define BASE_PROCESS_PROCESS_PROCESS_INFO_H_
8 #include "base/base_export.h"
9 #include "base/basictypes.h"
11 namespace base {
13 class Time;
15 // Vends information about the current process.
16 class BASE_EXPORT CurrentProcessInfo {
17 public:
18 // Returns the time at which the process was launched. May be empty if an
19 // error occurred retrieving the information.
20 static const Time CreationTime();
23 } // namespace base
25 #endif // BASE_PROCESS_PROCESS_PROCESS_INFO_H_