diff options
Diffstat (limited to 'chrome/browser/policy/policy_transformations.h')
-rw-r--r-- | chrome/browser/policy/policy_transformations.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/chrome/browser/policy/policy_transformations.h b/chrome/browser/policy/policy_transformations.h new file mode 100644 index 0000000..12f4c9f --- /dev/null +++ b/chrome/browser/policy/policy_transformations.h @@ -0,0 +1,18 @@ +// Copyright 2013 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef CHROME_BROWSER_POLICY_POLICY_TRANSFORMATIONS_H_ +#define CHROME_BROWSER_POLICY_POLICY_TRANSFORMATIONS_H_ + +namespace policy { + +class PolicyBundle; + +// Helper that converts deprecated chrome policies into their corresponding +// actual policies. +void FixDeprecatedPolicies(PolicyBundle* bundle); + +} // namespace policy + +#endif // CHROME_BROWSER_POLICY_POLICY_TRANSFORMATIONS_H_ |