summaryrefslogtreecommitdiffstats
path: root/chrome/browser/policy/device_management_backend_impl.h
diff options
context:
space:
mode:
authormnissler@chromium.org <mnissler@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-04-15 09:00:43 +0000
committermnissler@chromium.org <mnissler@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-04-15 09:00:43 +0000
commitd08a925de1e2b96c68bf6ca341512e18d3098a9b (patch)
tree8aae9e820f63a49021ab8158b0171eca1d061a8e /chrome/browser/policy/device_management_backend_impl.h
parent0f482cccfb42857e44b7c7d76f789bdb7e147099 (diff)
downloadchromium_src-d08a925de1e2b96c68bf6ca341512e18d3098a9b.zip
chromium_src-d08a925de1e2b96c68bf6ca341512e18d3098a9b.tar.gz
chromium_src-d08a925de1e2b96c68bf6ca341512e18d3098a9b.tar.bz2
Include platform information in requests to device management server.
BUG=chromium-os:13701 TEST=compiles and passes tests Review URL: http://codereview.chromium.org/6823077 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81716 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/policy/device_management_backend_impl.h')
-rw-r--r--chrome/browser/policy/device_management_backend_impl.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/chrome/browser/policy/device_management_backend_impl.h b/chrome/browser/policy/device_management_backend_impl.h
index 345bc40..7fa8950 100644
--- a/chrome/browser/policy/device_management_backend_impl.h
+++ b/chrome/browser/policy/device_management_backend_impl.h
@@ -14,8 +14,8 @@
namespace policy {
-class DeviceManagementService;
class DeviceManagementJobBase;
+class DeviceManagementService;
// Implements the actual backend interface. It creates device management jobs
// and passes them on to the service for processing.
@@ -25,6 +25,7 @@ class DeviceManagementBackendImpl : public DeviceManagementBackend {
virtual ~DeviceManagementBackendImpl();
static std::string GetAgentString();
+ static std::string GetPlatformString();
// Name constants for URL query parameters.
static const char kParamRequest[];
@@ -32,6 +33,7 @@ class DeviceManagementBackendImpl : public DeviceManagementBackend {
static const char kParamAppType[];
static const char kParamDeviceID[];
static const char kParamAgent[];
+ static const char kParamPlatform[];
// String constants for the device and app type we report to the server.
static const char kValueRequestRegister[];