Home
last modified time | relevance | path

Searched refs:m_serviceType (Results 1 – 5 of 5) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/html/
DHTMLEmbedElement.cpp95 m_serviceType = value.string().lower(); in parseAttribute()
96 size_t pos = m_serviceType.find(";"); in parseAttribute()
98 m_serviceType = m_serviceType.left(pos); in parseAttribute()
133 if (m_url.isEmpty() && m_serviceType.isEmpty()) in updateWidgetInternal()
161 requestObject(m_url, m_serviceType, paramNames, paramValues); in updateWidgetInternal()
DHTMLObjectElement.cpp97 m_serviceType = value.lower(); in parseAttribute()
98 size_t pos = m_serviceType.find(";"); in parseAttribute()
100 m_serviceType = m_serviceType.left(pos); in parseAttribute()
254 … if (MIMETypeRegistry::isJavaAppletMIMEType(m_serviceType) && classId().startsWith("java:", false)) in hasValidClassId()
283 String serviceType = m_serviceType; in updateWidgetInternal()
370 m_serviceType = m_imageLoader->image()->response().mimeType(); in renderFallbackContent()
DHTMLPlugInElement.cpp127 && !wouldLoadAsNetscapePlugin(m_url, m_serviceType) in attach()
356 if (m_serviceType.isEmpty() && protocolIs(m_url, "data")) in isImageType()
357 m_serviceType = mimeTypeFromDataURL(m_url); in isImageType()
361 …return frame->loader().client()->objectContentType(completedURL, m_serviceType, shouldPreferPlugIn… in isImageType()
364 return Image::supportsType(m_serviceType); in isImageType()
369 String mimeType = m_serviceType; in loadedMimeType()
DHTMLPlugInElement.h82 String m_serviceType; variable
DHTMLAppletElement.cpp49 m_serviceType = "application/x-java-applet"; in HTMLAppletElement()