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

  /external/webkit/Source/WebKit/win/
WebError.h 34 class WebError : public IWebError, IWebErrorPrivate {
36 static WebError* createInstance(const WebCore::ResourceError&, IPropertyBag* userInfo = 0);
37 static WebError* createInstance();
39 WebError(const WebCore::ResourceError&, IPropertyBag* userInfo);
40 ~WebError();
WebError.cpp 28 #include "WebError.h"
39 // WebError ---------------------------------------------------------------------
41 WebError::WebError(const ResourceError& error, IPropertyBag* userInfo)
47 gClassNameCount.add("WebError");
50 WebError::~WebError()
53 gClassNameCount.remove("WebError");
56 WebError* WebError::createInstance(const ResourceError& error, IPropertyBag* userInfo
    [all...]
  /external/webkit/Source/WebKit2/Shared/
WebError.h 35 // WebError - An error type suitable for vending to an API.
37 class WebError : public APIObject {
41 static PassRefPtr<WebError> create()
43 return adoptRef(new WebError);
46 static PassRefPtr<WebError> create(const WebCore::ResourceError& error)
48 return adoptRef(new WebError(error));
61 WebError()
65 WebError(const WebCore::ResourceError& error)

Completed in 88 milliseconds