Home | History | Annotate | Download | only in npapi

Lines Matching defs:Singleton

84 PluginHost *PluginHost::Singleton() {
85 CR_DEFINE_STATIC_LOCAL(scoped_refptr<PluginHost>, singleton, ());
86 if (singleton.get() == NULL) {
87 singleton = new PluginHost();
90 DCHECK(singleton.get() != NULL);
91 return singleton.get();