| Index: chromeos/dbus/debug_daemon_client.h
|
| diff --git a/chromeos/dbus/debug_daemon_client.h b/chromeos/dbus/debug_daemon_client.h
|
| index 92652e3f9a318e591b35567378ac218db99c08ea..7c09a789a00eb3c44b571df3b9df841d3bbe18d5 100644
|
| --- a/chromeos/dbus/debug_daemon_client.h
|
| +++ b/chromeos/dbus/debug_daemon_client.h
|
| @@ -95,11 +95,14 @@ class CHROMEOS_EXPORT DebugDaemonClient {
|
| virtual void GetPerfData(uint32_t duration,
|
| const GetPerfDataCallback& callback) = 0;
|
|
|
| - // Callback type for GetAllLogs() or GetUserLogFiles().
|
| + // Callback type for GetScrubbedLogs(), GetAllLogs() or GetUserLogFiles().
|
| typedef base::Callback<void(bool succeeded,
|
| const std::map<std::string, std::string>& logs)>
|
| GetLogsCallback;
|
|
|
| + // Gets scrubbed logs from debugd.
|
| + virtual void GetScrubbedLogs(const GetLogsCallback& callback) = 0;
|
| +
|
| // Gets all logs collected by debugd.
|
| virtual void GetAllLogs(const GetLogsCallback& callback) = 0;
|
|
|
|
|