Searched refs:m_serviceType (Results 1 – 5 of 5) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/core/html/ |
D | HTMLEmbedElement.cpp | 93 m_serviceType = value.lower(); in parseAttribute() 94 size_t pos = m_serviceType.find(";"); in parseAttribute() 96 m_serviceType = m_serviceType.left(pos); in parseAttribute() 131 if (m_url.isEmpty() && m_serviceType.isEmpty()) in updateWidgetInternal() 150 requestObject(m_url, m_serviceType, paramNames, paramValues); in updateWidgetInternal()
|
D | HTMLPlugInElement.cpp | 136 && !wouldLoadAsNetscapePlugin(m_url, m_serviceType) in attach() 156 if (m_serviceType.isEmpty()) in requestPluginCreationWithoutRendererIfPossible() 160 || !document().frame()->loader().client()->canCreatePluginWithoutRenderer(m_serviceType)) in requestPluginCreationWithoutRendererIfPossible() 171 ASSERT(document().frame()->loader().client()->canCreatePluginWithoutRenderer(m_serviceType)); in createPluginWithoutRenderer() 178 paramValues.append(m_serviceType); in createPluginWithoutRenderer() 181 loadPlugin(url, m_serviceType, paramNames, paramValues, useFallback, false); in createPluginWithoutRenderer() 401 if (m_serviceType.isEmpty() && protocolIs(m_url, "data")) in isImageType() 402 m_serviceType = mimeTypeFromDataURL(m_url); in isImageType() 406 …return frame->loader().client()->objectContentType(completedURL, m_serviceType, shouldPreferPlugIn… in isImageType() 409 return Image::supportsType(m_serviceType); in isImageType()
|
D | HTMLObjectElement.cpp | 103 m_serviceType = value.lower(); in parseAttribute() 104 size_t pos = m_serviceType.find(";"); in parseAttribute() 106 m_serviceType = m_serviceType.left(pos); in parseAttribute() 230 … if (MIMETypeRegistry::isJavaAppletMIMEType(m_serviceType) && classId().startsWith("java:", false)) in hasValidClassId() 284 String serviceType = m_serviceType; in updateWidgetInternal() 382 m_serviceType = m_imageLoader->image()->response().mimeType(); in renderFallbackContent()
|
D | HTMLPlugInElement.h | 94 String m_serviceType; variable
|
D | HTMLAppletElement.cpp | 49 m_serviceType = "application/x-java-applet"; in HTMLAppletElement()
|