Home | History | Annotate | Download | only in cpp

Lines Matching full:interface_name

162 const void* Module::GetPluginInterface(const char* interface_name) {
163 if (strcmp(interface_name, PPP_INPUT_EVENT_INTERFACE) == 0)
165 if (strcmp(interface_name, PPP_INSTANCE_INTERFACE) == 0)
167 if (strcmp(interface_name, PPP_MESSAGING_INTERFACE) == 0)
172 std::string(interface_name));
179 const void* Module::GetBrowserInterface(const char* interface_name) {
180 return get_browser_interface_(interface_name);
190 void Module::AddPluginInterface(const std::string& interface_name,
196 const void* existing_interface = GetPluginInterface(interface_name.c_str());
201 additional_interfaces_[interface_name] = vtable;