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

Side by Side Diff: chrome/browser/content_settings/content_settings_override_provider.h

Issue 542253003: Add a global on/off switch for content settings and expose a toggle on the Website Settings options… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@global-settings
Patch Set: Forgot to clarify ownership comments. Created 6 years, 3 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 2014 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_CONTENT_SETTINGS_CONTENT_SETTINGS_OVERRIDE_PROVIDER_H_
6 #define CHROME_BROWSER_CONTENT_SETTINGS_CONTENT_SETTINGS_OVERRIDE_PROVIDER_H_
7
8 #include <map>
9
10 #include "base/macros.h"
11 #include "base/synchronization/lock.h"
12 #include "components/content_settings/core/common/content_settings_types.h"
13
14 class PrefService;
15
16 namespace user_prefs {
17 class PrefRegistrySyncable;
18 }
19
20 namespace content_settings {
21
22 // OverrideProvider contains if certain content settings are enabled or
23 // globally disabled.
24 class OverrideProvider {
25 public:
26 static void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry);
27
28 OverrideProvider(PrefService* prefs, bool incognito);
29 virtual ~OverrideProvider();
30
31 // Returns if |content_type| is enabled. If it is not enabled, the content
32 // setting type is considered globally disabled and acts as though it is
33 // blocked. If it is enabled, the content setting type's permission is granted
34 // by the other providers.
35 bool IsEnabled(ContentSettingsType content_type) const;
36
37 // Sets |content_type|'s enabled status.
38 void SetContentSetting(ContentSettingsType content_type, bool is_enabled);
39
40 private:
41 // Reads the override settings from the preferences service.
42 void ReadOverrideSettings();
43
44 // Copies of the pref data, so that we can read it on the IO thread.
45 std::map<ContentSettingsType, bool> override_settings_;
46
47 PrefService* prefs_;
48
49 bool is_incognito_;
50
51 // Used around accesses to the |override_content_settings_| object to
52 // guarantee thread safety.
53 mutable base::Lock lock_;
54
55 DISALLOW_COPY_AND_ASSIGN(OverrideProvider);
56 };
57
58 } // namespace content_settings
59
60 #endif // CHROME_BROWSER_CONTENT_SETTINGS_CONTENT_SETTINGS_OVERRIDE_PROVIDER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698