| // Copyright 2020 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_DEVICE_API_DEVICE_SERVICE_IMPL_H_ |
| #define CHROME_BROWSER_DEVICE_API_DEVICE_SERVICE_IMPL_H_ |
| |
| #include "components/prefs/pref_change_registrar.h" |
| #include "content/public/browser/frame_service_base.h" |
| #include "third_party/blink/public/mojom/device/device.mojom.h" |
| |
| namespace content { |
| class RenderFrameHost; |
| } |
| |
| // A browser-side mojo service, which corresponds to the navigator.managed Web |
| // API. Available only to trusted web applications. |
| class DeviceServiceImpl final |
| : public content::FrameServiceBase<blink::mojom::DeviceAPIService> { |
| public: |
| // Tries to attach this mojo service to |host| for trusted web applications. |
| // Will dynamically disconnect if the trustness status is revoked. |
| static void Create( |
| content::RenderFrameHost* host, |
| mojo::PendingReceiver<blink::mojom::DeviceAPIService> receiver); |
| |
| DeviceServiceImpl(const DeviceServiceImpl&) = delete; |
| DeviceServiceImpl& operator=(const DeviceServiceImpl&) = delete; |
| ~DeviceServiceImpl() override; |
| |
| // blink::mojom::DeviceAPIService: |
| void GetDirectoryId(GetDirectoryIdCallback callback) override; |
| void GetHostname(GetHostnameCallback callback) override; |
| void GetSerialNumber(GetSerialNumberCallback callback) override; |
| void GetAnnotatedAssetId(GetAnnotatedAssetIdCallback callback) override; |
| void GetAnnotatedLocation(GetAnnotatedLocationCallback callback) override; |
| |
| private: |
| DeviceServiceImpl( |
| content::RenderFrameHost* host, |
| mojo::PendingReceiver<blink::mojom::DeviceAPIService> receiver); |
| |
| void OnForceInstallWebAppListChanged(); |
| |
| content::RenderFrameHost* const host_; |
| PrefChangeRegistrar pref_change_registrar_; |
| }; |
| |
| #endif // CHROME_BROWSER_DEVICE_API_DEVICE_SERVICE_IMPL_H_ |