Home | History | Annotate | Download | only in network

Lines Matching defs:ResourceError

37 class PLATFORM_EXPORT ResourceError {
39 static ResourceError cancelledError(const String& failingURL);
41 ResourceError()
50 ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription)
62 // Makes a deep copy. Useful for when you need to use a ResourceError on another thread.
63 ResourceError copy() const;
80 static bool compare(const ResourceError&, const ResourceError&);
93 inline bool operator==(const ResourceError& a, const ResourceError& b) { return ResourceError::compare(a, b); }
94 inline bool operator!=(const ResourceError& a, const ResourceError& b) { return !(a == b); }