blob: 65d0cefcd74d004b7c269e5d190e4ab138aa159a [file] [log] [blame]
// Copyright (c) 2012 The Chromium OS 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 PROCESS_WITH_ID_H_
#define PROCESS_WITH_ID_H_
#include <string>
#include "sandboxed_process.h"
namespace debugd {
// @brief Represents a process with an immutable ID.
//
// The ID is random, unguessable, and may be given to other processes. It is a
// null-terminated ASCII string.
class ProcessWithId : public SandboxedProcess {
public:
ProcessWithId();
virtual bool Init();
const std::string& id() const { return id_; }
private:
bool GenerateId();
std::string id_;
};
} // namespace debugd
#endif // PROCESS_WITH_ID_H_