chromium/components/device_signals/core/common/common_types.h

// 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.

#ifndef COMPONENTS_DEVICE_SIGNALS_CORE_COMMON_COMMON_TYPES_H_
#define COMPONENTS_DEVICE_SIGNALS_CORE_COMMON_COMMON_TYPES_H_

#include <optional>
#include <string>
#include <vector>

#include "base/files/file_path.h"
#include "base/values.h"

namespace device_signals {

// Used to indicate whether a given signal was correctly found or not, or
// indicate a reason for not being able to find it.
enum class PresenceValue {};

struct ExecutableMetadata {};

struct FileSystemItem {};

struct GetFileSystemInfoOptions {};

struct CrowdStrikeSignals {};

}  // namespace device_signals

#endif  // COMPONENTS_DEVICE_SIGNALS_CORE_COMMON_COMMON_TYPES_H_