| Index: chrome/browser/sessions/restore_on_startup_policy_handler_unittest.cc
|
| diff --git a/chrome/browser/sessions/restore_on_startup_policy_handler_unittest.cc b/chrome/browser/sessions/restore_on_startup_policy_handler_unittest.cc
|
| index 3835652a6290da25b9b5aef200cb08e227eedf8f..0c35d581bd1d7f9ad032afdd4120b3cf3ff7090e 100644
|
| --- a/chrome/browser/sessions/restore_on_startup_policy_handler_unittest.cc
|
| +++ b/chrome/browser/sessions/restore_on_startup_policy_handler_unittest.cc
|
| @@ -16,6 +16,7 @@
|
| #include "components/policy/core/browser/configuration_policy_handler.h"
|
| #include "components/policy/core/browser/policy_error_map.h"
|
| #include "components/policy/core/common/policy_map.h"
|
| +#include "components/policy/core/common/policy_types.h"
|
| #include "grit/components_strings.h"
|
| #include "policy/policy_constants.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| @@ -27,7 +28,8 @@ class RestoreOnStartupPolicyHandlerTest : public testing::Test {
|
| protected:
|
| void SetPolicyValue(const std::string& policy, base::Value* value) {
|
| policies_.Set(
|
| - policy, POLICY_LEVEL_MANDATORY, POLICY_SCOPE_USER, value, NULL);
|
| + policy, POLICY_LEVEL_MANDATORY, POLICY_SCOPE_USER, POLICY_SOURCE_CLOUD,
|
| + value, nullptr);
|
| }
|
| bool CheckPolicySettings() {
|
| return handler_.CheckPolicySettings(policies_, &errors_);
|
|
|