blob: 0ea60f04c9517f5b4de28cbb59f6f7e973cd9a3d [file] [log] [blame]
Keshav Santhanamdc1aa7b2016-07-11 09:08:12 -07001// Copyright 2017 The Chromium OS 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.
4
5#ifndef DEBUGD_SRC_CONTAINER_TOOL_H_
6#define DEBUGD_SRC_CONTAINER_TOOL_H_
7
8#include <base/macros.h>
9
10namespace debugd {
11
12class ContainerTool {
13 public:
14 ContainerTool() = default;
15 ~ContainerTool() = default;
16
17 void ContainerStarted();
18 void ContainerStopped();
19
20 private:
21 bool device_jail_started_;
22
23 DISALLOW_COPY_AND_ASSIGN(ContainerTool);
24};
25
26} // namespace debugd
27
28#endif // DEBUGD_SRC_CONTAINER_TOOL_H_