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

  /external/chromium_org/third_party/WebKit/Source/core/dom/
DOMError.cpp 27 #include "core/dom/DOMError.h"
32 DOMError::DOMError(const String& name)
37 DOMError::DOMError(const String& name, const String& message)
DOMError.h 39 class DOMError : public RefCountedWillBeGarbageCollectedFinalized<DOMError>, public ScriptWrappable {
42 static PassRefPtrWillBeRawPtr<DOMError> create(const String& name)
44 return adoptRefWillBeNoop(new DOMError(name));
46 static PassRefPtrWillBeRawPtr<DOMError> create(const String& name, const String& message)
48 return adoptRefWillBeNoop(new DOMError(name, message));
51 static PassRefPtrWillBeRawPtr<DOMError> create(ExceptionCode ec)
53 return adoptRefWillBeNoop(new DOMError(DOMException::getErrorName(ec), DOMException::getErrorMessage(ec)));
56 static PassRefPtrWillBeRawPtr<DOMError> create(ExceptionCode ec, const String& message)
58 return adoptRefWillBeNoop(new DOMError(DOMException::getErrorName(ec), message))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebIDBDatabaseError.cpp 34 #include "core/dom/DOMError.h"
46 m_private = DOMError::create(code);
51 m_private = DOMError::create(code, message);
59 WebIDBDatabaseError::operator PassRefPtrWillBeRawPtr<DOMError>() const

Completed in 1228 milliseconds