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

Unified Diff: chrome/browser/policy/device_management_backend_impl.h

Issue 6409040: New policy protobuf protocol. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Ready for review! Created 9 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/policy/device_management_backend_impl.h
diff --git a/chrome/browser/policy/device_management_backend_impl.h b/chrome/browser/policy/device_management_backend_impl.h
index d818b4d0c0ca8ea024a5522eba27883e69b8f373..b558bdd843913441eae5383b45e8ea11917bf4f1 100644
--- a/chrome/browser/policy/device_management_backend_impl.h
+++ b/chrome/browser/policy/device_management_backend_impl.h
@@ -36,7 +36,8 @@ class DeviceManagementBackendImpl : public DeviceManagementBackend {
// String constants for the device and app type we report to the server.
static const char kValueRequestRegister[];
static const char kValueRequestUnregister[];
- static const char kValueRequestPolicy[];
+ static const char kValueRequestPolicy[]; // deprecated.
Mattias Nissler (ping if slow) 2011/02/02 12:27:55 same here, maybe put a reference to the other expl
Jakob Kummerow 2011/02/03 14:36:52 Done.
+ static const char kValueRequestCloudPolicy[];
static const char kValueDeviceType[];
static const char kValueAppType[];
@@ -67,7 +68,12 @@ class DeviceManagementBackendImpl : public DeviceManagementBackend {
const std::string& device_management_token,
const std::string& device_id,
const em::DevicePolicyRequest& request,
- DevicePolicyResponseDelegate* response_delegate);
+ DevicePolicyResponseDelegate* response_delegate); // deprecated
Mattias Nissler (ping if slow) 2011/02/02 12:27:55 dito
Jakob Kummerow 2011/02/03 14:36:52 Done.
+ virtual void ProcessCloudPolicyRequest(
+ const std::string& device_management_token,
+ const std::string& device_id,
+ const em::CloudPolicyRequest& request,
+ DevicePolicyResponseDelegate* delegate);
// Keeps track of the jobs currently in flight.
JobSet pending_jobs_;

Powered by Google App Engine
This is Rietveld 408576698