OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DialAPI
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/chrome/browser/extensions/api/dial/
dial_api_factory.cc
14
scoped_refptr<
DialAPI
> DialAPIFactory::GetForProfile(Profile* profile) {
15
return static_cast<
DialAPI
*>(
25
"
DialAPI
", BrowserContextDependencyManager::GetInstance()) {
35
return scoped_refptr<
DialAPI
>(new
DialAPI
(static_cast<Profile*>(profile)));
dial_api_factory.h
15
class
DialAPI
;
19
static scoped_refptr<
DialAPI
> GetForProfile(Profile* profile);
dial_api.h
24
class
DialAPI
: public RefcountedBrowserContextKeyedService,
28
explicit
DialAPI
(Profile* profile);
34
// Called by the DialRegistry on the IO thread so that the
DialAPI
dispatches
40
virtual ~
DialAPI
();
64
DISALLOW_COPY_AND_ASSIGN(
DialAPI
);
89
DialAPI
* dial_;
dial_api.cc
39
DialAPI
::
DialAPI
(Profile* profile)
46
DialAPI
::~
DialAPI
() {}
48
DialRegistry*
DialAPI
::dial_registry() {
59
void
DialAPI
::OnListenerAdded(const EventListenerInfo& details) {
63
base::Bind(&
DialAPI
::NotifyListenerAddedOnIOThread, this));
66
void
DialAPI
::OnListenerRemoved(const EventListenerInfo& details) {
70
base::Bind(&
DialAPI
::NotifyListenerRemovedOnIOThread, this));
73
void
DialAPI
::NotifyListenerAddedOnIOThread()
[
all
...]
dial_apitest.cc
48
scoped_refptr<extensions::
DialAPI
> api =
Completed in 115 milliseconds