// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chrome/browser/feedback/system_logs/log_sources/device_event_log_source.h" #include "components/device_event_log/device_event_log.h" #include "content/public/browser/browser_thread.h" namespace system_logs { const char kNetworkEventLogEntry[] = …; const char kDeviceEventLogEntry[] = …; DeviceEventLogSource::DeviceEventLogSource() : … { … } DeviceEventLogSource::~DeviceEventLogSource() { … } void DeviceEventLogSource::Fetch(SysLogsSourceCallback callback) { … } } // namespace system_logs