chromium/chrome/browser/device_api/managed_configuration_service.h

// Copyright 2020 The Chromium Authors
// 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_MANAGED_CONFIGURATION_SERVICE_H_
#define CHROME_BROWSER_DEVICE_API_MANAGED_CONFIGURATION_SERVICE_H_

#include <string>
#include <vector>

#include "chrome/browser/device_api/managed_configuration_api.h"
#include "content/public/browser/document_service.h"
#include "content/public/browser/render_frame_host.h"
#include "mojo/public/cpp/bindings/pending_remote.h"
#include "mojo/public/cpp/bindings/remote.h"
#include "third_party/blink/public/mojom/device/device.mojom.h"

class ManagedConfigurationServiceImpl
    : public content::DocumentService<
          blink::mojom::ManagedConfigurationService>,
      public ManagedConfigurationAPI::Observer {};

#endif  // CHROME_BROWSER_DEVICE_API_MANAGED_CONFIGURATION_SERVICE_H_