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

Side by Side Diff: chrome/browser/plugins/plugin_policy_handler.h

Issue 1071713004: Enable NPAPI if policy has plugin policies. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add missing files Created 5 years, 8 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 2013 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_PLUGINS_PLUGIN_POLICY_HANDLER_H_
6 #define CHROME_BROWSER_PLUGINS_PLUGIN_POLICY_HANDLER_H_
7
8 #include "components/policy/core/browser/configuration_policy_handler.h"
9
10 class PrefValueMap;
11
12 namespace base {
13 class Value;
14 }
15
16 namespace policy {
17
18 class PolicyErrorMap;
19 class PolicyMap;
20
21 // ConfigurationPolicyHandler for the plugin policies that re-enable NPAPI.
22 class PluginPolicyHandler : public TypeCheckingPolicyHandler {
23 public:
24 PluginPolicyHandler(const char* policy_name,
25 const char* pref_path,
26 base::Value::Type value_type);
27
28 ~PluginPolicyHandler() override;
29
30 // ConfigurationPolicyHandler methods:
31 void ApplyPolicySettings(const PolicyMap& policies,
32 PrefValueMap* prefs) override;
33
34 private:
35 // The DictionaryValue path of the preference the policy maps to.
36 const char* pref_path_;
37
38 DISALLOW_COPY_AND_ASSIGN(PluginPolicyHandler);
39 };
40
41 } // namespace policy
42
43 #endif // CHROME_BROWSER_PLUGINS_PLUGIN_POLICY_HANDLER_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/plugins/plugin_policy_handler.cc » ('j') | chrome/browser/plugins/plugin_policy_handler.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698