Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(512)

Side by Side Diff: chrome/browser/policy/device_management_service_configuration.h

Issue 240903002: Add consumer_device_management_service() in BrowserPolicyConnectorChromeOS. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: move consumer management stuffs to chromeos-only code. Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698