blob: 74aade33aead1c677a207a2929b9579a5f213728 [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 DEBUGD_SRC_DEBUG_MODE_TOOL_H_
#define DEBUGD_SRC_DEBUG_MODE_TOOL_H_
#include <string>
#include <vector>
#include <base/macros.h>
#include <dbus-c++/dbus.h>
namespace debugd {
class DebugModeTool {
public:
explicit DebugModeTool(DBus::Connection* connection);
virtual ~DebugModeTool() = default;
virtual void SetDebugMode(const std::string& subsystem, DBus::Error* error);
private:
void GetAllModemManagers(std::vector<std::string>* managers);
void SetAllModemManagersLogging(const std::string& level);
DBus::Connection* connection_;
DISALLOW_COPY_AND_ASSIGN(DebugModeTool);
};
} // namespace debugd
#endif // DEBUGD_SRC_DEBUG_MODE_TOOL_H_