// Copyright 2021 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CONTENT_BROWSER_DEVICE_POSTURE_DEVICE_POSTURE_PLATFORM_PROVIDER_H_ #define CONTENT_BROWSER_DEVICE_POSTURE_DEVICE_POSTURE_PLATFORM_PROVIDER_H_ #include <memory> #include "base/observer_list.h" #include "base/observer_list_types.h" #include "third_party/blink/public/mojom/device_posture/device_posture_provider.mojom.h" #include "ui/gfx/geometry/rect.h" namespace content { class WebContents; // This the base class for platform-specific device posture provider // implementations. In typical usage a single instance is owned by // DeviceService. class DevicePosturePlatformProvider { … }; } // namespace content #endif // CONTENT_BROWSER_DEVICE_POSTURE_DEVICE_POSTURE_PLATFORM_PROVIDER_H_