blob: 98cb681802d9fd14ccf8539c67d1c6b3c1dc3093 [file] [log] [blame]
// Copyright 2014 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_POLICY_DEVICE_MANAGEMENT_SERVICE_CONFIGURATION_H_
#define CHROME_BROWSER_POLICY_DEVICE_MANAGEMENT_SERVICE_CONFIGURATION_H_
#include <string>
#include "base/compiler_specific.h"
#include "base/macros.h"
#include "components/policy/core/common/cloud/device_management_service.h"
namespace policy {
// The real implementation of the device management service configuration that
// is used to create device management service instances.
class DeviceManagementServiceConfiguration
: public DeviceManagementService::Configuration {
public:
explicit DeviceManagementServiceConfiguration(const std::string& server_url);
~DeviceManagementServiceConfiguration() override;
std::string GetServerUrl() override;
std::string GetAgentParameter() override;
std::string GetPlatformParameter() override;
private:
const std::string server_url_;
DISALLOW_COPY_AND_ASSIGN(DeviceManagementServiceConfiguration);
};
} // namespace policy
#endif // CHROME_BROWSER_POLICY_DEVICE_MANAGEMENT_SERVICE_CONFIGURATION_H_