Home
last modified time | relevance | path

Searched refs:m_mimeType (Results 1 – 25 of 25) sorted by relevance

/external/webkit/Source/WebCore/loader/
DSubstituteData.h43 , m_mimeType(mimeType) in m_content()
53 const String& mimeType() const { return m_mimeType; } in mimeType()
60 String m_mimeType; variable
DDocumentWriter.h67 const String& mimeType() const { return m_mimeType; } in mimeType()
68 void setMIMEType(const String& type) { m_mimeType = type; } in setMIMEType()
85 String m_mimeType; variable
DDocumentWriter.cpp102 …splayingInitialEmptyDocument() && m_frame->loader()->client()->shouldUsePluginDocument(m_mimeType)) in createDocument()
106 return DOMImplementation::createDocument(m_mimeType, m_frame, url, m_frame->inViewSourceMode()); in createDocument()
159 m_decoder = TextResourceDecoder::create(m_mimeType, in createDecoderIfNeeded()
175 m_decoder = TextResourceDecoder::create(m_mimeType, String()); in createDecoderIfNeeded()
/external/webkit/Source/WebCore/platform/network/qt/
DQtMIMETypeSniffer.h32 QString mimeType() const { return m_mimeType; } in mimeType()
45 QString m_mimeType; variable
DQtMIMETypeSniffer.cpp30 , m_mimeType(advertisedMimeType) in QtMIMETypeSniffer()
50 m_mimeType = QString::fromLatin1(sniffedMimeType); in sniff()
/external/webkit/Source/WebKit/android/WebCoreSupport/
DUrlInterceptResponse.h48 return m_mimeType; in mimeType()
64 std::string m_mimeType;
DUrlInterceptResponse.cpp103 m_mimeType.assign(s, env->GetStringUTFLength(mimeStr.get())); in UrlInterceptResponse()
DFrameLoaderClientAndroid.cpp1088 , m_mimeType(mimeType) in PluginToggleWidget()
1174 m_mimeType, in swapPlugin()
1190 String m_mimeType; member in android::PluginToggleWidget
/external/webkit/Source/WebKit/win/
DWebResource.cpp42 , m_mimeType(mimeType) in WebResource()
106 m_mimeType = String(mimeType); in initWithData()
140 *mime = BString(m_mimeType).release(); in MIMEType()
DWebResource.h77 WTF::String m_mimeType; variable
/external/webkit/Source/WebCore/loader/archive/
DArchiveResource.h43 const String& mimeType() const { return m_mimeType; } in mimeType()
53 String m_mimeType; variable
DArchiveResource.cpp38 , m_mimeType(mimeType) in ArchiveResource()
/external/webkit/Source/WebCore/platform/network/
DResourceResponseBase.h150 String m_mimeType; variable
195 String m_mimeType; member
DResourceResponseBase.cpp73 , m_mimeType(mimeType) in ResourceResponseBase()
103 response->setMimeType(data->m_mimeType); in adopt()
123 data->m_mimeType = mimeType().crossThreadString(); in copyData()
164 return m_mimeType; in mimeType()
172 m_mimeType = mimeType; in setMimeType()
/external/webkit/Source/WebCore/platform/network/cf/
DResourceResponseCFNet.cpp54 RetainPtr<CFStringRef> mimeType(AdoptCF, m_mimeType.createCFString()); in cfURLResponse()
90 m_mimeType = CFURLResponseGetMIMEType(m_cfResponse.get()); in platformLazyInit()
/external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
DNetscapePluginStream.cpp149 m_mimeType = mimeType.utf8(); in start()
159 …NPError error = m_plugin->NPP_NewStream(const_cast<char*>(m_mimeType.data()), &m_npStream, false, … in start()
DNetscapePluginStream.h102 CString m_mimeType; variable
/external/webkit/Source/WebKit/mac/Plugins/Hosted/
DHostedNetscapePluginStream.h97 RetainPtr<NSString> m_mimeType; variable
DHostedNetscapePluginStream.mm97 m_mimeType = mimeType;
257 MIMEType:m_mimeType.get()] autorelease];
/external/webkit/Source/WebCore/platform/network/mac/
DResourceResponseMac.mm65 …m_nsResponse.adoptNS([[NSURLResponse alloc] initWithURL:m_url MIMEType:m_mimeType expectedContentL…
85 m_mimeType = [m_nsResponse.get() MIMEType];
/external/webkit/Source/WebKit/mac/Plugins/
DWebNetscapePluginStream.h105 CString m_mimeType; variable
DWebNetscapePluginStream.mm109 … MIMEType:(NSString *)String::fromUTF8(m_mimeType.data(), m_mimeType.length())] autorelease];
218 m_mimeType = mimeType.utf8();
247 …npErr = m_pluginFuncs->newstream(m_plugin, m_mimeType.mutableData(), &m_stream, NO, &m_transferMod…
250 …LOG(Plugins, "NPP_NewStream URL=%@ MIME=%s error=%d", m_responseURL.get(), m_mimeType.data(), npEr…
/external/webkit/Source/WebCore/plugins/
DPluginView.h242 const String& mimeType() const { return m_mimeType; } in mimeType()
382 String m_mimeType; variable
DPluginView.cpp260 …npErr = m_plugin->pluginFuncs()->newp((NPMIMEType)m_mimeType.utf8().data(), m_instance, m_mode, m_… in start()
909 , m_mimeType(mimeType) in PluginView()
/external/webkit/Source/WebCore/
DChangeLog-2010-01-2977733 m_mimeType is now a WebCore::String, so we call .utf8(). If NPP_New()
77752 Initialize new members m_haveUpdatedPluginWidget. Initialize m_mimeType
77753 with mimeType directly; m_mimeType is now a WebCore::String.
77757 plug-ins. Changed m_mimeType from CString to String and added