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
|
// Copyright (c) 2012 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/extension_preference_helpers.h"
#include "base/json/json_writer.h"
#include "base/values.h"
#include "chrome/browser/extensions/extension_event_router.h"
#include "chrome/browser/extensions/extension_prefs.h"
#include "chrome/browser/extensions/extension_service.h"
#include "chrome/browser/prefs/pref_service.h"
#include "chrome/browser/profiles/profile.h"
namespace {
const char kIncognitoPersistent[] = "incognito_persistent";
const char kIncognitoSessionOnly[] = "incognito_session_only";
const char kRegular[] = "regular";
const char kLevelOfControlKey[] = "levelOfControl";
const char kNotControllable[] = "not_controllable";
const char kControlledByOtherExtensions[] = "controlled_by_other_extensions";
const char kControllableByThisExtension[] = "controllable_by_this_extension";
const char kControlledByThisExtension[] = "controlled_by_this_extension";
} // namespace
namespace extension_preference_helpers {
bool StringToScope(const std::string& s, ExtensionPrefsScope* scope) {
if (s == kRegular)
*scope = kExtensionPrefsScopeRegular;
else if (s == kIncognitoPersistent)
*scope = kExtensionPrefsScopeIncognitoPersistent;
else if (s == kIncognitoSessionOnly)
*scope = kExtensionPrefsScopeIncognitoSessionOnly;
else
return false;
return true;
}
const char* GetLevelOfControl(
Profile* profile,
const std::string& extension_id,
const std::string& browser_pref,
bool incognito) {
PrefService* prefs = incognito ? profile->GetOffTheRecordPrefs()
: profile->GetPrefs();
const PrefService::Preference* pref =
prefs->FindPreference(browser_pref.c_str());
CHECK(pref);
ExtensionPrefs* ep = profile->GetExtensionService()->extension_prefs();
if (!pref->IsExtensionModifiable())
return kNotControllable;
if (ep->DoesExtensionControlPref(extension_id, browser_pref, incognito))
return kControlledByThisExtension;
if (ep->CanExtensionControlPref(extension_id, browser_pref, incognito))
return kControllableByThisExtension;
return kControlledByOtherExtensions;
}
void DispatchEventToExtensions(
Profile* profile,
const std::string& event_name,
ListValue* args,
ExtensionAPIPermission::ID permission,
bool incognito,
const std::string& browser_pref) {
ExtensionEventRouter* router = profile->GetExtensionEventRouter();
if (!router || !router->HasEventListener(event_name))
return;
ExtensionService* extension_service = profile->GetExtensionService();
const ExtensionSet* extensions = extension_service->extensions();
for (ExtensionSet::const_iterator it = extensions->begin();
it != extensions->end(); ++it) {
std::string extension_id = (*it)->id();
// TODO(bauerb): Only iterate over registered event listeners.
if (router->ExtensionHasEventListener(extension_id, event_name) &&
(*it)->HasAPIPermission(permission) &&
(!incognito || extension_service->CanCrossIncognito(*it))) {
// Inject level of control key-value.
DictionaryValue* dict;
bool rv = args->GetDictionary(0, &dict);
DCHECK(rv);
std::string level_of_control =
GetLevelOfControl(profile, extension_id, browser_pref, incognito);
dict->SetString(kLevelOfControlKey, level_of_control);
std::string json_args;
base::JSONWriter::Write(args, &json_args);
router->DispatchEventToExtension(
extension_id, event_name, json_args, NULL, GURL());
}
}
}
} // namespace extension_preference_helpers
|