Home | History | Annotate | Download | only in npapi

Lines Matching defs:Singleton

91 PluginHost *PluginHost::Singleton() {
92 CR_DEFINE_STATIC_LOCAL(scoped_refptr<PluginHost>, singleton, ());
93 if (singleton.get() == NULL) {
94 singleton = new PluginHost();
97 DCHECK(singleton.get() != NULL);
98 return singleton.get();