Home | History | Annotate | Download | only in network

Lines Matching defs:ResourceResponse

45 class PLATFORM_EXPORT ResourceResponse {
55 static PassOwnPtr<ResourceResponse> adopt(PassOwnPtr<CrossThreadResourceResponseData>);
60 ResourceResponse();
61 ResourceResponse(const KURL&, const AtomicString& mimeType, long long expectedLength, const AtomicString& textEncodingName, const String& filename);
184 // The ResourceResponse subclass may "shadow" this method to provide platform-specific memory usage information
192 static bool compare(const ResourceResponse&, const ResourceResponse&);
282 inline bool operator==(const ResourceResponse& a, const ResourceResponse& b) { return ResourceResponse::compare(a, b); }
283 inline bool operator!=(const ResourceResponse& a, const ResourceResponse& b) { return !(a == b); }
300 ResourceResponse::HTTPVersion m_httpVersion;