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

  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebURLError.cpp 34 #include "platform/network/ResourceError.h"
42 WebURLError::WebURLError(const ResourceError& error)
47 WebURLError& WebURLError::operator=(const ResourceError& error)
61 WebURLError::operator ResourceError() const
64 return ResourceError();
66 ResourceError resourceError = ResourceError(domain, reason, String::fromUTF8(spec.data(), spec.length()), localizedDescription);
67 resourceError.setIsCancellation(isCancellation);
68 return resourceError;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/network/
ResourceError.h 37 class PLATFORM_EXPORT ResourceError {
39 static ResourceError cancelledError(const String& failingURL);
41 ResourceError()
49 ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription)
60 // Makes a deep copy. Useful for when you need to use a ResourceError on another thread.
61 ResourceError copy() const;
76 static bool compare(const ResourceError&, const ResourceError&);
88 inline bool operator==(const ResourceError& a, const ResourceError& b) { return ResourceError::compare(a, b);
    [all...]

Completed in 95 milliseconds