HomeSort by relevance Sort by last modified time
    Searched refs:m_cfResponse (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/WebCore/platform/network/cf/
ResourceResponseCFNet.cpp 52 if (!m_cfResponse && !m_isNull) {
56 m_cfResponse.adoptCF(CFURLResponseCreate(0, url.get(), mimeType.get(), m_expectedContentLength, textEncodingName.get(), kCFURLCacheStorageAllowed));
59 return m_cfResponse.get();
84 ASSERT(!m_cfResponse.get());
89 m_url = CFURLResponseGetURL(m_cfResponse.get());
90 m_mimeType = CFURLResponseGetMIMEType(m_cfResponse.get());
91 m_expectedContentLength = CFURLResponseGetExpectedContentLength(m_cfResponse.get());
92 m_textEncodingName = CFURLResponseGetTextEncodingName(m_cfResponse.get());
99 m_lastModifiedDate = toTimeT(CFURLResponseGetLastModifiedDate(m_cfResponse.get()));
101 RetainPtr<CFStringRef> suggestedFilename(AdoptCF, CFURLResponseCopySuggestedFilename(m_cfResponse.get()))
    [all...]
ResourceResponse.h 53 : m_cfResponse(cfResponse)
101 mutable RetainPtr<CFURLResponseRef> m_cfResponse;

Completed in 52 milliseconds