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

Side by Side Diff: chrome/browser/chromeos/platform_keys/key_permissions_policy_handler.h

Issue 1150373002: platformKeys: Add policy and corporate key tagging. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@key_perm
Patch Set: Rebased. Created 5 years, 6 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
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_CHROMEOS_PLATFORM_KEYS_KEY_PERMISSIONS_POLICY_HANDLER_H_
6 #define CHROME_BROWSER_CHROMEOS_PLATFORM_KEYS_KEY_PERMISSIONS_POLICY_HANDLER_H_
7
8 #include "base/macros.h"
9 #include "components/policy/core/browser/configuration_policy_handler.h"
10
11 namespace policy {
12 class Schema;
13 }
14
15 namespace chromeos {
16
17 class KeyPermissionsPolicyHandler
18 : public policy::SchemaValidatingPolicyHandler {
19 public:
20 explicit KeyPermissionsPolicyHandler(const policy::Schema& chrome_schema);
21
22 // policy::ConfigurationPolicyHandler:
23 void ApplyPolicySettings(const policy::PolicyMap& policies,
24 PrefValueMap* prefs) override;
25
26 private:
27 DISALLOW_COPY_AND_ASSIGN(KeyPermissionsPolicyHandler);
28 };
29
30 } // namespace chromeos
31
32 #endif // CHROME_BROWSER_CHROMEOS_PLATFORM_KEYS_KEY_PERMISSIONS_POLICY_HANDLER_ H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698