blob: 10605e91baa2ddb95b656d0b797029ad2c5bee5a [file] [log] [blame]
// Copyright 2017 The Chromium 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 EXTENSIONS_SHELL_BROWSER_FEEDBACK_SYSTEM_LOGS_SHELL_SYSTEM_LOGS_FETCHER_H_
#define EXTENSIONS_SHELL_BROWSER_FEEDBACK_SYSTEM_LOGS_SHELL_SYSTEM_LOGS_FETCHER_H_
namespace content {
class BrowserContext;
} // namespace content
namespace system_logs {
class SystemLogsFetcher;
// Creates a SystemLogsFetcher to aggregate the scrubbed logs for sending with
// feedback reports. The fetcher deletes itself once it finishes fetching data.
SystemLogsFetcher* BuildShellSystemLogsFetcher(
content::BrowserContext* browser_context);
} // namespace system_logs
#endif // EXTENSIONS_SHELL_BROWSER_FEEDBACK_SYSTEM_LOGS_SHELL_SYSTEM_LOGS_FETCHER_H_