Chromium Code Reviews| Index: components/policy/core/common/policy_loader_win_unittest.cc |
| diff --git a/components/policy/core/common/policy_loader_win_unittest.cc b/components/policy/core/common/policy_loader_win_unittest.cc |
| index c0afc4ecf33f6cd65ab662ff7c43f073bd434d35..6caef665570eaba84650d6ff19ce75e5068112f6 100644 |
| --- a/components/policy/core/common/policy_loader_win_unittest.cc |
| +++ b/components/policy/core/common/policy_loader_win_unittest.cc |
| @@ -333,7 +333,9 @@ void ScopedGroupPolicyRegistrySandbox::DeleteKeys() { |
| } |
| RegistryTestHarness::RegistryTestHarness(HKEY hive, PolicyScope scope) |
| - : PolicyProviderTestHarness(POLICY_LEVEL_MANDATORY, scope), hive_(hive) {} |
| + : PolicyProviderTestHarness(POLICY_LEVEL_MANDATORY, scope, |
| + POLICY_SOURCE_PLATFORM), |
|
bartfab (slow)
2015/09/14 14:42:27
Nit: #include "components/policy/core/common/polic
fhorschig
2015/09/16 13:52:05
Done.
|
| + hive_(hive) {} |
|
bartfab (slow)
2015/09/14 14:42:27
Nit: Put the closing brace on a separate line (wha
fhorschig
2015/09/16 13:52:05
Done.
|
| RegistryTestHarness::~RegistryTestHarness() {} |
| @@ -455,7 +457,8 @@ PolicyProviderTestHarness* RegistryTestHarness::CreateHKLM() { |
| } |
| PRegTestHarness::PRegTestHarness() |
| - : PolicyProviderTestHarness(POLICY_LEVEL_MANDATORY, POLICY_SCOPE_MACHINE) {} |
| + : PolicyProviderTestHarness(POLICY_LEVEL_MANDATORY, POLICY_SCOPE_MACHINE, |
| + POLICY_SOURCE_PLATFORM) {} |
|
bartfab (slow)
2015/09/14 14:42:27
Nit: Put the closing brace on a separate line.
fhorschig
2015/09/16 13:52:05
Done.
|
| PRegTestHarness::~PRegTestHarness() {} |