OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:PreferenceAPI
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/chrome/browser/extensions/api/preference/
preference_api.h
47
// manipulation. This implementation is separate from
PreferenceAPI
, since
51
// See also
PreferenceAPI
and TestPreferenceAPI.
91
class
PreferenceAPI
: public PreferenceAPIBase,
96
explicit
PreferenceAPI
(Profile* profile);
97
virtual ~
PreferenceAPI
();
103
static ProfileKeyedAPIFactory<
PreferenceAPI
>* GetFactoryInstance();
105
// Convenience method to get the
PreferenceAPI
for a profile.
106
static
PreferenceAPI
* Get(Profile* profile);
125
friend class ProfileKeyedAPIFactory<
PreferenceAPI
>;
142
return "
PreferenceAPI
";
[
all
...]
preference_api.cc
374
PreferenceAPI
::
PreferenceAPI
(Profile* profile) : profile_(profile) {
387
PreferenceAPI
::~
PreferenceAPI
() {
390
void
PreferenceAPI
::Shutdown() {
397
static base::LazyInstance<ProfileKeyedAPIFactory<
PreferenceAPI
> >
401
ProfileKeyedAPIFactory<
PreferenceAPI
>*
PreferenceAPI
::GetFactoryInstance() {
406
PreferenceAPI
*
PreferenceAPI
::Get(Profile* profile)
[
all
...]
Completed in 40 milliseconds