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

Side by Side Diff: components/policy/core/common/policy_statistics_collector_unittest.cc

Issue 1304843004: Add source column to chrome://policy showing the origins of policies. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed another test. Created 5 years, 3 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 unified diff | Download patch
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « components/policy/core/common/policy_service_impl_unittest.cc ('k') | components/policy/core/common/policy_types.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698