Elly Jones | 0b6bd18 | 2012-02-14 18:24:22 -0500 | [diff] [blame] | 1 | // Copyright (c) 2012 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 | |
Ben Chan | a0011d8 | 2014-05-13 00:19:29 -0700 | [diff] [blame^] | 5 | #ifndef DEBUG_LOGS_TOOL_H_ |
| 6 | #define DEBUG_LOGS_TOOL_H_ |
Elly Jones | 0b6bd18 | 2012-02-14 18:24:22 -0500 | [diff] [blame] | 7 | |
| 8 | #include <string> |
| 9 | |
| 10 | #include <base/basictypes.h> |
| 11 | #include <dbus-c++/dbus.h> |
| 12 | |
| 13 | namespace debugd { |
| 14 | |
| 15 | class DebugLogsTool { |
| 16 | public: |
| 17 | DebugLogsTool(); |
| 18 | ~DebugLogsTool(); |
| 19 | |
Ben Chan | a0011d8 | 2014-05-13 00:19:29 -0700 | [diff] [blame^] | 20 | void GetDebugLogs(const DBus::FileDescriptor& fd, DBus::Error* error); |
| 21 | |
Elly Jones | 0b6bd18 | 2012-02-14 18:24:22 -0500 | [diff] [blame] | 22 | private: |
| 23 | DISALLOW_COPY_AND_ASSIGN(DebugLogsTool); |
| 24 | }; |
| 25 | |
Ben Chan | a0011d8 | 2014-05-13 00:19:29 -0700 | [diff] [blame^] | 26 | } // namespace debugd |
Elly Jones | 0b6bd18 | 2012-02-14 18:24:22 -0500 | [diff] [blame] | 27 | |
Ben Chan | a0011d8 | 2014-05-13 00:19:29 -0700 | [diff] [blame^] | 28 | #endif // DEBUG_LOGS_TOOL_H_ |