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

Unified Diff: chrome/browser/chromeos/platform_keys/key_permissions_policy_handler.cc

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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/platform_keys/key_permissions_policy_handler.cc
diff --git a/chrome/browser/chromeos/platform_keys/key_permissions_policy_handler.cc b/chrome/browser/chromeos/platform_keys/key_permissions_policy_handler.cc
new file mode 100644
index 0000000000000000000000000000000000000000..b28fb7bad53c91c7b1afc51c2b383fa606626ce4
--- /dev/null
+++ b/chrome/browser/chromeos/platform_keys/key_permissions_policy_handler.cc
@@ -0,0 +1,25 @@
+// Copyright 2015 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.
+
+#include "chrome/browser/chromeos/platform_keys/key_permissions_policy_handler.h"
+
+#include "components/policy/core/common/schema.h"
+#include "policy/policy_constants.h"
+
+namespace chromeos {
+
+KeyPermissionsPolicyHandler::KeyPermissionsPolicyHandler(
+ const policy::Schema& chrome_schema)
+ : policy::SchemaValidatingPolicyHandler(
+ policy::key::kKeyPermissions,
+ chrome_schema.GetKnownProperty(policy::key::kKeyPermissions),
+ policy::SCHEMA_ALLOW_UNKNOWN) {
+}
+
+void KeyPermissionsPolicyHandler::ApplyPolicySettings(
+ const policy::PolicyMap& /* policies */,
+ PrefValueMap* /* prefs */) {
+}
+
+} // namespace chromeos

Powered by Google App Engine
This is Rietveld 408576698