1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159
|
// 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.
#include "chrome/browser/extensions/api/preference/chrome_direct_setting_api.h"
#include "base/bind.h"
#include "base/containers/hash_tables.h"
#include "base/lazy_instance.h"
#include "base/prefs/pref_change_registrar.h"
#include "base/prefs/pref_service.h"
#include "base/strings/stringprintf.h"
#include "chrome/browser/extensions/api/preference/preference_api_constants.h"
#include "chrome/browser/profiles/profile.h"
#include "extensions/browser/extension_registry.h"
namespace extensions {
namespace chromedirectsetting {
const char kOnPrefChangeFormat[] =
"types.private.ChromeDirectSetting.%s.onChange";
class PreferenceWhitelist {
public:
PreferenceWhitelist() {
// Note: DO NOT add any setting here that does not have a UI element in
// chrome://settings unless you write a component extension that is always
// installed. Otherwise, users may install your extension, the extension may
// toggle settings, and after the extension has been disabled/uninstalled
// the toggled setting remains in place. See http://crbug.com/164227#c157 .
whitelist_.insert("googlegeolocationaccess.enabled");
// The following settings need to be checked and probably removed. See
// http://crbug.com/164227#c157 .
whitelist_.insert("spdy_proxy.enabled");
whitelist_.insert("data_reduction.daily_original_length");
whitelist_.insert("data_reduction.daily_received_length");
whitelist_.insert("data_reduction.update_daily_lengths");
whitelist_.insert("easy_unlock.proximity_required");
}
~PreferenceWhitelist() {}
bool IsPreferenceOnWhitelist(const std::string& pref_key){
return whitelist_.find(pref_key) != whitelist_.end();
}
void RegisterEventListeners(
Profile* profile,
EventRouter::Observer* observer) {
for (base::hash_set<std::string>::iterator iter = whitelist_.begin();
iter != whitelist_.end();
iter++) {
std::string event_name = base::StringPrintf(
kOnPrefChangeFormat,
(*iter).c_str());
EventRouter::Get(profile)->RegisterObserver(observer, event_name);
}
}
void RegisterPropertyListeners(
Profile* profile,
PrefChangeRegistrar* registrar,
const base::Callback<void(const std::string&)>& callback) {
for (base::hash_set<std::string>::iterator iter = whitelist_.begin();
iter != whitelist_.end();
iter++) {
const char* pref_key = (*iter).c_str();
std::string event_name = base::StringPrintf(
kOnPrefChangeFormat,
pref_key);
registrar->Add(pref_key, callback);
}
}
private:
base::hash_set<std::string> whitelist_;
DISALLOW_COPY_AND_ASSIGN(PreferenceWhitelist);
};
base::LazyInstance<PreferenceWhitelist> preference_whitelist =
LAZY_INSTANCE_INITIALIZER;
static base::LazyInstance<
BrowserContextKeyedAPIFactory<ChromeDirectSettingAPI> > g_factory =
LAZY_INSTANCE_INITIALIZER;
ChromeDirectSettingAPI::ChromeDirectSettingAPI(content::BrowserContext* context)
: profile_(Profile::FromBrowserContext(context)) {
preference_whitelist.Get().RegisterEventListeners(profile_, this);
}
ChromeDirectSettingAPI::~ChromeDirectSettingAPI() {}
// KeyedService implementation.
void ChromeDirectSettingAPI::Shutdown() {}
// BrowserContextKeyedAPI implementation.
BrowserContextKeyedAPIFactory<ChromeDirectSettingAPI>*
ChromeDirectSettingAPI::GetFactoryInstance() {
return g_factory.Pointer();
}
// EventRouter::Observer implementation.
void ChromeDirectSettingAPI::OnListenerAdded(const EventListenerInfo& details) {
EventRouter::Get(profile_)->UnregisterObserver(this);
registrar_.Init(profile_->GetPrefs());
preference_whitelist.Get().RegisterPropertyListeners(
profile_,
®istrar_,
base::Bind(&ChromeDirectSettingAPI::OnPrefChanged,
base::Unretained(this),
registrar_.prefs()));
}
bool ChromeDirectSettingAPI::IsPreferenceOnWhitelist(
const std::string& pref_key) {
return preference_whitelist.Get().IsPreferenceOnWhitelist(pref_key);
}
ChromeDirectSettingAPI* ChromeDirectSettingAPI::Get(
content::BrowserContext* context) {
return BrowserContextKeyedAPIFactory<ChromeDirectSettingAPI>::Get(context);
}
// BrowserContextKeyedAPI implementation.
const char* ChromeDirectSettingAPI::service_name() {
return "ChromeDirectSettingAPI";
}
void ChromeDirectSettingAPI::OnPrefChanged(
PrefService* pref_service, const std::string& pref_key) {
std::string event_name = base::StringPrintf(kOnPrefChangeFormat,
pref_key.c_str());
EventRouter* router = EventRouter::Get(profile_);
if (router && router->HasEventListener(event_name)) {
const PrefService::Preference* preference =
profile_->GetPrefs()->FindPreference(pref_key.c_str());
const base::Value* value = preference->GetValue();
scoped_ptr<base::DictionaryValue> result(new base::DictionaryValue);
result->Set(preference_api_constants::kValue, value->DeepCopy());
base::ListValue args;
args.Append(result.release());
for (const scoped_refptr<const extensions::Extension>& extension :
ExtensionRegistry::Get(profile_)->enabled_extensions()) {
const std::string& extension_id = extension->id();
if (router->ExtensionHasEventListener(extension_id, event_name)) {
scoped_ptr<base::ListValue> args_copy(args.DeepCopy());
scoped_ptr<Event> event(new Event(event_name, args_copy.Pass()));
router->DispatchEventToExtension(extension_id, event.Pass());
}
}
}
}
} // namespace chromedirectsetting
} // namespace extensions
|