| 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 #include "chrome/browser/chromeos/policy/user_cloud_policy_manager_chromeos.h" | 5 #include "chrome/browser/chromeos/policy/user_cloud_policy_manager_chromeos.h" |
| 6 | 6 |
| 7 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
| 8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "base/message_loop.h" | 9 #include "base/message_loop.h" |
| 10 #include "base/prefs/pref_registry_simple.h" | 10 #include "base/prefs/pref_registry_simple.h" |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 EXPECT_FALSE(manager_->IsInitializationComplete(POLICY_DOMAIN_CHROME)); | 79 EXPECT_FALSE(manager_->IsInitializationComplete(POLICY_DOMAIN_CHROME)); |
| 80 | 80 |
| 81 // Finishing the Load() operation shouldn't set the initialized flag. | 81 // Finishing the Load() operation shouldn't set the initialized flag. |
| 82 EXPECT_CALL(observer_, OnUpdatePolicy(_)).Times(0); | 82 EXPECT_CALL(observer_, OnUpdatePolicy(_)).Times(0); |
| 83 store_->NotifyStoreLoaded(); | 83 store_->NotifyStoreLoaded(); |
| 84 EXPECT_FALSE(manager_->IsInitializationComplete(POLICY_DOMAIN_CHROME)); | 84 EXPECT_FALSE(manager_->IsInitializationComplete(POLICY_DOMAIN_CHROME)); |
| 85 Mock::VerifyAndClearExpectations(&observer_); | 85 Mock::VerifyAndClearExpectations(&observer_); |
| 86 } | 86 } |
| 87 | 87 |
| 88 // Required by the refresh scheduler that's created by the manager. | 88 // Required by the refresh scheduler that's created by the manager. |
| 89 MessageLoop loop_; | 89 base::MessageLoop loop_; |
| 90 | 90 |
| 91 // Convenience policy objects. | 91 // Convenience policy objects. |
| 92 em::DeviceManagementResponse policy_blob_; | 92 em::DeviceManagementResponse policy_blob_; |
| 93 PolicyMap policy_map_; | 93 PolicyMap policy_map_; |
| 94 PolicyBundle expected_bundle_; | 94 PolicyBundle expected_bundle_; |
| 95 | 95 |
| 96 // Policy infrastructure. | 96 // Policy infrastructure. |
| 97 TestingPrefServiceSimple prefs_; | 97 TestingPrefServiceSimple prefs_; |
| 98 MockConfigurationPolicyObserver observer_; | 98 MockConfigurationPolicyObserver observer_; |
| 99 MockDeviceManagementService device_management_service_; | 99 MockDeviceManagementService device_management_service_; |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 | 159 |
| 160 // Cancelling the initial fetch should flip the flag. | 160 // Cancelling the initial fetch should flip the flag. |
| 161 EXPECT_CALL(observer_, OnUpdatePolicy(manager_.get())); | 161 EXPECT_CALL(observer_, OnUpdatePolicy(manager_.get())); |
| 162 manager_->CancelWaitForPolicyFetch(); | 162 manager_->CancelWaitForPolicyFetch(); |
| 163 EXPECT_TRUE(manager_->IsInitializationComplete(POLICY_DOMAIN_CHROME)); | 163 EXPECT_TRUE(manager_->IsInitializationComplete(POLICY_DOMAIN_CHROME)); |
| 164 Mock::VerifyAndClearExpectations(&observer_); | 164 Mock::VerifyAndClearExpectations(&observer_); |
| 165 } | 165 } |
| 166 | 166 |
| 167 } // namespace | 167 } // namespace |
| 168 } // namespace policy | 168 } // namespace policy |
| OLD | NEW |