| 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 <cstring> | 5 #include <cstring> |
| 6 #include <string> | 6 #include <string> |
| 7 | 7 |
| 8 #include "base/callback.h" | 8 #include "base/callback.h" |
| 9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 chrome_schema_, | 102 chrome_schema_, |
| 103 &policy_service_, | 103 &policy_service_, |
| 104 &prefs_, | 104 &prefs_, |
| 105 task_runner_)); | 105 task_runner_)); |
| 106 } | 106 } |
| 107 | 107 |
| 108 void SetPolicy(const std::string& name) { | 108 void SetPolicy(const std::string& name) { |
| 109 policy_map_.Set(name, | 109 policy_map_.Set(name, |
| 110 POLICY_LEVEL_MANDATORY, | 110 POLICY_LEVEL_MANDATORY, |
| 111 POLICY_SCOPE_USER, | 111 POLICY_SCOPE_USER, |
| 112 POLICY_SOURCE_CLOUD, |
| 112 new base::FundamentalValue(true), | 113 new base::FundamentalValue(true), |
| 113 NULL); | 114 NULL); |
| 114 } | 115 } |
| 115 | 116 |
| 116 base::TimeDelta GetFirstDelay() const { | 117 base::TimeDelta GetFirstDelay() const { |
| 117 if (task_runner_->GetPendingTasks().empty()) { | 118 if (task_runner_->GetPendingTasks().empty()) { |
| 118 ADD_FAILURE(); | 119 ADD_FAILURE(); |
| 119 return base::TimeDelta(); | 120 return base::TimeDelta(); |
| 120 } | 121 } |
| 121 return task_runner_->GetPendingTasks().front().delay; | 122 return task_runner_->GetPendingTasks().front().delay; |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 EXPECT_CALL(*policy_statistics_collector_.get(), | 186 EXPECT_CALL(*policy_statistics_collector_.get(), |
| 186 RecordPolicyUse(kTestPolicy1Id)); | 187 RecordPolicyUse(kTestPolicy1Id)); |
| 187 EXPECT_CALL(*policy_statistics_collector_.get(), | 188 EXPECT_CALL(*policy_statistics_collector_.get(), |
| 188 RecordPolicyUse(kTestPolicy2Id)); | 189 RecordPolicyUse(kTestPolicy2Id)); |
| 189 | 190 |
| 190 policy_statistics_collector_->Initialize(); | 191 policy_statistics_collector_->Initialize(); |
| 191 EXPECT_EQ(1u, task_runner_->GetPendingTasks().size()); | 192 EXPECT_EQ(1u, task_runner_->GetPendingTasks().size()); |
| 192 } | 193 } |
| 193 | 194 |
| 194 } // namespace policy | 195 } // namespace policy |
| OLD | NEW |