OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TtsAPI
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/chrome/browser/speech/extension_api/
tts_extension_api.h
63
class
TtsAPI
: public ProfileKeyedAPI {
65
explicit
TtsAPI
(Profile* profile);
66
virtual ~
TtsAPI
();
68
// Convenience method to get the
TtsAPI
for a profile.
69
static
TtsAPI
* Get(Profile* profile);
72
static ProfileKeyedAPIFactory<
TtsAPI
>* GetFactoryInstance();
75
friend class ProfileKeyedAPIFactory<
TtsAPI
>;
79
return "
TtsAPI
";
tts_extension_api.cc
345
TtsAPI
*
TtsAPI
::Get(Profile* profile) {
346
return ProfileKeyedAPIFactory<
TtsAPI
>::GetForProfile(profile);
349
TtsAPI
::
TtsAPI
(Profile* profile) {
361
TtsAPI
::~
TtsAPI
() {
364
static base::LazyInstance<ProfileKeyedAPIFactory<
TtsAPI
> >
367
ProfileKeyedAPIFactory<
TtsAPI
>*
TtsAPI
::GetFactoryInstance()
[
all
...]
/external/chromium_org/chrome/browser/profiles/
chrome_browser_main_extra_parts_profiles.cc
305
extensions::
TtsAPI
::GetFactoryInstance();
Completed in 433 milliseconds