blob: e7c3f542508a71f81dac0a7b2ea256926669d5d5 [file] [log] [blame]
// Copyright 2021 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 CHROME_BROWSER_ENTERPRISE_SIGNALS_DEVICE_INFO_FETCHER_LINUX_H_
#define CHROME_BROWSER_ENTERPRISE_SIGNALS_DEVICE_INFO_FETCHER_LINUX_H_
#include "chrome/browser/enterprise/signals/device_info_fetcher.h"
namespace enterprise_signals {
// Linux implementation of DeviceInfoFetcher.
class DeviceInfoFetcherLinux : public DeviceInfoFetcher {
public:
DeviceInfoFetcherLinux();
DeviceInfoFetcherLinux(const DeviceInfoFetcherLinux&) = delete;
DeviceInfoFetcherLinux& operator=(const DeviceInfoFetcherLinux&) = delete;
~DeviceInfoFetcherLinux() override;
// Overrides DeviceInfoFetcher:
DeviceInfo Fetch() override;
};
} // namespace enterprise_signals
#endif // CHROME_BROWSER_ENTERPRISE_SIGNALS_DEVICE_INFO_FETCHER_LINUX_H_