HomeSort by relevance Sort by last modified time
    Searched defs:MDnsAPI (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/chrome/browser/extensions/api/mdns/
mdns_api.cc 33 MDnsAPI::MDnsAPI(Profile* profile) : profile_(profile) {
39 MDnsAPI::~MDnsAPI() {
46 MDnsAPI* MDnsAPI::Get(Profile* profile) {
47 return ProfileKeyedAPIFactory<MDnsAPI>::GetForProfile(profile);
50 static base::LazyInstance<ProfileKeyedAPIFactory<MDnsAPI> > g_factory =
54 ProfileKeyedAPIFactory<MDnsAPI>* MDnsAPI::GetFactoryInstance()
    [all...]
mdns_api.h 21 // MDnsAPI is instantiated with the profile and will listen for extensions that
25 class MDnsAPI : public ProfileKeyedAPI,
29 explicit MDnsAPI(Profile* profile);
30 virtual ~MDnsAPI();
32 static MDnsAPI* Get(Profile* profile);
35 static ProfileKeyedAPIFactory<MDnsAPI>* GetFactoryInstance();
45 friend class ProfileKeyedAPIFactory<MDnsAPI>;
58 return "MDnsAPI";
75 DISALLOW_COPY_AND_ASSIGN(MDnsAPI);

Completed in 2095 milliseconds