| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_CHROMEOS_POLICY_DEVICE_LOCAL_ACCOUNT_POLICY_PROVIDER_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_POLICY_DEVICE_LOCAL_ACCOUNT_POLICY_PROVIDER_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_POLICY_DEVICE_LOCAL_ACCOUNT_POLICY_PROVIDER_H_ | 6 #define CHROME_BROWSER_CHROMEOS_POLICY_DEVICE_LOCAL_ACCOUNT_POLICY_PROVIDER_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| 11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
| 12 #include "base/memory/ref_counted.h" |
| 12 #include "base/memory/weak_ptr.h" | 13 #include "base/memory/weak_ptr.h" |
| 14 #include "chrome/browser/chromeos/policy/device_local_account_external_data_mana
ger.h" |
| 13 #include "chrome/browser/chromeos/policy/device_local_account_policy_service.h" | 15 #include "chrome/browser/chromeos/policy/device_local_account_policy_service.h" |
| 14 #include "chrome/browser/policy/configuration_policy_provider.h" | 16 #include "chrome/browser/policy/configuration_policy_provider.h" |
| 15 | 17 |
| 16 namespace policy { | 18 namespace policy { |
| 17 | 19 |
| 18 // Policy provider for a device-local account. Pulls policy from | 20 // Policy provider for a device-local account. Pulls policy from |
| 19 // DeviceLocalAccountPolicyService. Note that this implementation keeps | 21 // DeviceLocalAccountPolicyService. Note that this implementation keeps |
| 20 // functioning when the device-local account disappears from | 22 // functioning when the device-local account disappears from |
| 21 // DeviceLocalAccountPolicyService. The current policy will be kept in that case | 23 // DeviceLocalAccountPolicyService. The current policy will be kept in that case |
| 22 // and RefreshPolicies becomes a no-op. | 24 // and RefreshPolicies becomes a no-op. |
| (...skipping 19 matching lines...) Expand all Loading... |
| 42 | 44 |
| 43 // Handles completion of policy refreshes and triggers the update callback. | 45 // Handles completion of policy refreshes and triggers the update callback. |
| 44 // |success| is true if the policy refresh was successful. | 46 // |success| is true if the policy refresh was successful. |
| 45 void ReportPolicyRefresh(bool success); | 47 void ReportPolicyRefresh(bool success); |
| 46 | 48 |
| 47 // Unless |waiting_for_policy_refresh_|, calls UpdatePolicy(), using the | 49 // Unless |waiting_for_policy_refresh_|, calls UpdatePolicy(), using the |
| 48 // policy from the broker if available or keeping the current policy. | 50 // policy from the broker if available or keeping the current policy. |
| 49 void UpdateFromBroker(); | 51 void UpdateFromBroker(); |
| 50 | 52 |
| 51 const std::string user_id_; | 53 const std::string user_id_; |
| 54 scoped_refptr<DeviceLocalAccountExternalDataManager> external_data_manager_; |
| 55 |
| 52 DeviceLocalAccountPolicyService* service_; | 56 DeviceLocalAccountPolicyService* service_; |
| 53 | 57 |
| 54 bool store_initialized_; | 58 bool store_initialized_; |
| 55 bool waiting_for_policy_refresh_; | 59 bool waiting_for_policy_refresh_; |
| 56 | 60 |
| 57 base::WeakPtrFactory<DeviceLocalAccountPolicyProvider> weak_factory_; | 61 base::WeakPtrFactory<DeviceLocalAccountPolicyProvider> weak_factory_; |
| 58 | 62 |
| 59 DISALLOW_COPY_AND_ASSIGN(DeviceLocalAccountPolicyProvider); | 63 DISALLOW_COPY_AND_ASSIGN(DeviceLocalAccountPolicyProvider); |
| 60 }; | 64 }; |
| 61 | 65 |
| 62 } // namespace policy | 66 } // namespace policy |
| 63 | 67 |
| 64 #endif // CHROME_BROWSER_CHROMEOS_POLICY_DEVICE_LOCAL_ACCOUNT_POLICY_PROVIDER_H
_ | 68 #endif // CHROME_BROWSER_CHROMEOS_POLICY_DEVICE_LOCAL_ACCOUNT_POLICY_PROVIDER_H
_ |
| OLD | NEW |