| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_POLICY_DEVICE_MANAGEMENT_BACKEND_H_ | 5 #ifndef CHROME_BROWSER_POLICY_DEVICE_MANAGEMENT_BACKEND_H_ |
| 6 #define CHROME_BROWSER_POLICY_DEVICE_MANAGEMENT_BACKEND_H_ | 6 #define CHROME_BROWSER_POLICY_DEVICE_MANAGEMENT_BACKEND_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/basictypes.h" | |
| 12 #include "base/threading/non_thread_safe.h" | 11 #include "base/threading/non_thread_safe.h" |
| 13 #include "chrome/browser/policy/cloud_policy_data_store.h" | 12 #include "chrome/browser/policy/cloud_policy_data_store.h" |
| 14 #include "chrome/browser/policy/proto/device_management_backend.pb.h" | 13 #include "chrome/browser/policy/proto/device_management_backend.pb.h" |
| 15 | 14 |
| 16 namespace policy { | 15 namespace policy { |
| 17 | 16 |
| 18 namespace em = enterprise_management; | 17 namespace em = enterprise_management; |
| 19 | 18 |
| 20 // Interface for clients that need to converse with the device management | 19 // Interface for clients that need to converse with the device management |
| 21 // server, which provides services to register Chrome installations and CrOS | 20 // server, which provides services to register Chrome installations and CrOS |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 protected: | 124 protected: |
| 126 DeviceManagementBackend() {} | 125 DeviceManagementBackend() {} |
| 127 | 126 |
| 128 private: | 127 private: |
| 129 DISALLOW_COPY_AND_ASSIGN(DeviceManagementBackend); | 128 DISALLOW_COPY_AND_ASSIGN(DeviceManagementBackend); |
| 130 }; | 129 }; |
| 131 | 130 |
| 132 } // namespace policy | 131 } // namespace policy |
| 133 | 132 |
| 134 #endif // CHROME_BROWSER_POLICY_DEVICE_MANAGEMENT_BACKEND_H_ | 133 #endif // CHROME_BROWSER_POLICY_DEVICE_MANAGEMENT_BACKEND_H_ |
| OLD | NEW |