OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef CHROME_BROWSER_POLICY_DEVICE_MANAGEMENT_SERVICE_CONFIGURATION_H_ | |
6 #define CHROME_BROWSER_POLICY_DEVICE_MANAGEMENT_SERVICE_CONFIGURATION_H_ | |
7 | |
8 #include <string> | |
9 | |
10 #include "components/policy/core/common/cloud/device_management_service.h" | |
11 | |
12 namespace policy { | |
13 | |
14 // The real implementation of the device management service configuration that | |
15 // is used to create the device management service instance. | |
16 class DeviceManagementServiceConfiguration | |
17 : public DeviceManagementService::Configuration { | |
18 public: | |
19 virtual ~DeviceManagementServiceConfiguration(); | |
20 | |
21 virtual std::string GetServerUrl() OVERRIDE; | |
Mattias Nissler (ping if slow)
2014/04/24 11:38:12
#include <base/compiler_specific.h> for OVERRIDE
davidyu
2014/04/25 01:45:40
Done.
| |
22 virtual std::string GetAgentParameter() OVERRIDE; | |
23 virtual std::string GetPlatformParameter() OVERRIDE; | |
24 }; | |
25 | |
26 } // namespace policy | |
27 | |
28 #endif // CHROME_BROWSER_POLICY_DEVICE_MANAGEMENT_SERVICE_CONFIGURATION_H_ | |
OLD | NEW |