OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/sessions/restore_on_startup_policy_handler.h" | 5 #include "chrome/browser/sessions/restore_on_startup_policy_handler.h" |
6 | 6 |
7 #include "base/prefs/pref_value_map.h" | 7 #include "base/prefs/pref_value_map.h" |
8 #include "base/strings/string_number_conversions.h" | 8 #include "base/strings/string_number_conversions.h" |
9 #include "base/values.h" | 9 #include "base/values.h" |
10 #include "chrome/browser/policy/policy_error_map.h" | 10 #include "chrome/browser/policy/policy_error_map.h" |
11 #include "chrome/browser/policy/policy_map.h" | |
12 #include "chrome/browser/prefs/session_startup_pref.h" | 11 #include "chrome/browser/prefs/session_startup_pref.h" |
13 #include "chrome/common/pref_names.h" | 12 #include "chrome/common/pref_names.h" |
| 13 #include "components/policy/core/common/policy_map.h" |
14 #include "grit/generated_resources.h" | 14 #include "grit/generated_resources.h" |
15 #include "policy/policy_constants.h" | 15 #include "policy/policy_constants.h" |
16 | 16 |
17 namespace policy { | 17 namespace policy { |
18 | 18 |
19 RestoreOnStartupPolicyHandler::RestoreOnStartupPolicyHandler() | 19 RestoreOnStartupPolicyHandler::RestoreOnStartupPolicyHandler() |
20 : TypeCheckingPolicyHandler(key::kRestoreOnStartup, | 20 : TypeCheckingPolicyHandler(key::kRestoreOnStartup, |
21 base::Value::TYPE_INTEGER) {} | 21 base::Value::TYPE_INTEGER) {} |
22 | 22 |
23 RestoreOnStartupPolicyHandler::~RestoreOnStartupPolicyHandler() { | 23 RestoreOnStartupPolicyHandler::~RestoreOnStartupPolicyHandler() { |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 default: | 121 default: |
122 errors->AddError(policy_name(), | 122 errors->AddError(policy_name(), |
123 IDS_POLICY_OUT_OF_RANGE_ERROR, | 123 IDS_POLICY_OUT_OF_RANGE_ERROR, |
124 base::IntToString(restore_value)); | 124 base::IntToString(restore_value)); |
125 } | 125 } |
126 } | 126 } |
127 return true; | 127 return true; |
128 } | 128 } |
129 | 129 |
130 } // namespace policy | 130 } // namespace policy |
OLD | NEW |