Home
last modified time | relevance | path

Searched refs:WebIDBDatabaseError (Results 1 – 24 of 24) sorted by relevance

/external/chromium_org/third_party/WebKit/public/platform/
DWebIDBDatabaseError.h41 class WebIDBDatabaseError {
43 ~WebIDBDatabaseError() { reset(); } in ~WebIDBDatabaseError()
45 WebIDBDatabaseError(unsigned short code) { assign(code); } in WebIDBDatabaseError() function
46 WebIDBDatabaseError(unsigned short code, const WebString& message) { assign(code, message); } in WebIDBDatabaseError() function
47 WebIDBDatabaseError(const WebIDBDatabaseError& error) { assign(error); } in WebIDBDatabaseError() function
48 WebIDBDatabaseError& operator=(const WebIDBDatabaseError& error)
54 BLINK_EXPORT void assign(const WebIDBDatabaseError&);
DWebIDBCallbacks.h39 class WebIDBDatabaseError; variable
50 virtual void onError(const WebIDBDatabaseError&) { BLINK_ASSERT_NOT_REACHED(); } in onError() argument
DWebIDBDatabaseCallbacks.h42 …virtual void onAbort(long long transactionId, const WebIDBDatabaseError&) { BLINK_ASSERT_NOT_REACH… in onAbort() argument
DWebIDBDatabase.h40 class WebIDBDatabaseError; variable
/external/chromium_org/third_party/WebKit/Source/web/
DWebIDBDatabaseError.cpp39 void WebIDBDatabaseError::assign(const WebIDBDatabaseError& value) in assign()
44 void WebIDBDatabaseError::assign(unsigned short code) in assign()
49 void WebIDBDatabaseError::assign(unsigned short code, const WebString& message) in assign()
54 void WebIDBDatabaseError::reset() in reset()
59 WebIDBDatabaseError::operator PassRefPtrWillBeRawPtr<DOMError>() const in operator PassRefPtrWillBeRawPtr<DOMError>()
Dweb.gypi164 'WebIDBDatabaseError.cpp',
Dblink_web.target.linux-mips64.mk133 third_party/WebKit/Source/web/WebIDBDatabaseError.cpp \
Dblink_web.target.linux-x86_64.mk133 third_party/WebKit/Source/web/WebIDBDatabaseError.cpp \
Dblink_web.target.linux-arm64.mk133 third_party/WebKit/Source/web/WebIDBDatabaseError.cpp \
Dblink_web.target.darwin-mips.mk133 third_party/WebKit/Source/web/WebIDBDatabaseError.cpp \
Dblink_web.target.linux-x86.mk133 third_party/WebKit/Source/web/WebIDBDatabaseError.cpp \
Dblink_web.target.darwin-x86.mk133 third_party/WebKit/Source/web/WebIDBDatabaseError.cpp \
Dblink_web.target.linux-arm.mk133 third_party/WebKit/Source/web/WebIDBDatabaseError.cpp \
Dblink_web.target.darwin-mips64.mk133 third_party/WebKit/Source/web/WebIDBDatabaseError.cpp \
Dblink_web.target.linux-mips.mk133 third_party/WebKit/Source/web/WebIDBDatabaseError.cpp \
Dblink_web.target.darwin-x86_64.mk133 third_party/WebKit/Source/web/WebIDBDatabaseError.cpp \
Dblink_web.target.darwin-arm64.mk133 third_party/WebKit/Source/web/WebIDBDatabaseError.cpp \
Dblink_web.target.darwin-arm.mk133 third_party/WebKit/Source/web/WebIDBDatabaseError.cpp \
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
DWebIDBCallbacksImpl.h44 class WebIDBDatabaseError; variable
57 virtual void onError(const WebIDBDatabaseError&) OVERRIDE;
DWebIDBDatabaseCallbacksImpl.h47 virtual void onAbort(long long transactionId, const WebIDBDatabaseError&) OVERRIDE;
DWebIDBDatabaseCallbacksImpl.cpp58 void WebIDBDatabaseCallbacksImpl::onAbort(long long transactionId, const WebIDBDatabaseError& error) in onAbort()
DWebIDBCallbacksImpl.cpp48 using blink::WebIDBDatabaseError;
82 void WebIDBCallbacksImpl::onError(const WebIDBDatabaseError& error) in onError()
/external/chromium_org/content/child/indexed_db/
Dindexed_db_dispatcher.cc30 using blink::WebIDBDatabaseError;
340 callbacks->onError(WebIDBDatabaseError( in RequestIDBDatabasePut()
735 callbacks->onError(WebIDBDatabaseError(code)); in OnError()
737 callbacks->onError(WebIDBDatabaseError(code, message)); in OnError()
753 callbacks->onAbort(transaction_id, WebIDBDatabaseError(code)); in OnAbort()
755 callbacks->onAbort(transaction_id, WebIDBDatabaseError(code, message)); in OnAbort()
Dindexed_db_dispatcher_unittest.cc25 using blink::WebIDBDatabaseError;
36 virtual void onError(const WebIDBDatabaseError&) { error_seen_ = true; } in onError() argument