Searched refs:WebIDBDatabaseError (Results 1 - 23 of 23) sorted by relevance

/external/chromium_org/third_party/WebKit/public/platform/
H A DWebIDBDatabaseError.h41 class WebIDBDatabaseError { class in namespace:blink
43 ~WebIDBDatabaseError() { reset(); }
45 WebIDBDatabaseError(unsigned short code) { assign(code); } function in class:blink::WebIDBDatabaseError
46 WebIDBDatabaseError(unsigned short code, const WebString& message) { assign(code, message); } function in class:blink::WebIDBDatabaseError
47 WebIDBDatabaseError(const WebIDBDatabaseError& error) { assign(error); } function in class:blink::WebIDBDatabaseError
48 WebIDBDatabaseError& operator=(const WebIDBDatabaseError& error)
54 BLINK_EXPORT void assign(const WebIDBDatabaseError&);
H A DWebIDBDatabaseCallbacks.h30 #include "WebIDBDatabaseError.h"
42 virtual void onAbort(long long transactionId, const WebIDBDatabaseError&) { BLINK_ASSERT_NOT_REACHED(); } argument
H A DWebIDBCallbacks.h39 class WebIDBDatabaseError;
50 virtual void onError(const WebIDBDatabaseError&) { BLINK_ASSERT_NOT_REACHED(); } argument
H A DWebIDBDatabase.h40 class WebIDBDatabaseError;
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebIDBDatabaseError.cpp32 #include "public/platform/WebIDBDatabaseError.h"
39 void WebIDBDatabaseError::assign(const WebIDBDatabaseError& value)
44 void WebIDBDatabaseError::assign(unsigned short code)
49 void WebIDBDatabaseError::assign(unsigned short code, const WebString& message)
54 void WebIDBDatabaseError::reset()
59 WebIDBDatabaseError::operator PassRefPtrWillBeRawPtr<DOMError>() const
H A Dblink_web.target.darwin-arm.mk133 third_party/WebKit/Source/web/WebIDBDatabaseError.cpp \
H A Dblink_web.target.darwin-arm64.mk133 third_party/WebKit/Source/web/WebIDBDatabaseError.cpp \
H A Dblink_web.target.darwin-mips.mk133 third_party/WebKit/Source/web/WebIDBDatabaseError.cpp \
H A Dblink_web.target.darwin-mips64.mk133 third_party/WebKit/Source/web/WebIDBDatabaseError.cpp \
H A Dblink_web.target.darwin-x86.mk133 third_party/WebKit/Source/web/WebIDBDatabaseError.cpp \
H A Dblink_web.target.darwin-x86_64.mk133 third_party/WebKit/Source/web/WebIDBDatabaseError.cpp \
H A Dblink_web.target.linux-arm.mk133 third_party/WebKit/Source/web/WebIDBDatabaseError.cpp \
H A Dblink_web.target.linux-arm64.mk133 third_party/WebKit/Source/web/WebIDBDatabaseError.cpp \
H A Dblink_web.target.linux-mips.mk133 third_party/WebKit/Source/web/WebIDBDatabaseError.cpp \
H A Dblink_web.target.linux-mips64.mk133 third_party/WebKit/Source/web/WebIDBDatabaseError.cpp \
H A Dblink_web.target.linux-x86.mk133 third_party/WebKit/Source/web/WebIDBDatabaseError.cpp \
H A Dblink_web.target.linux-x86_64.mk133 third_party/WebKit/Source/web/WebIDBDatabaseError.cpp \
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
H A DWebIDBDatabaseCallbacksImpl.h31 #include "public/platform/WebIDBDatabaseError.h"
47 virtual void onAbort(long long transactionId, const WebIDBDatabaseError&) OVERRIDE;
H A DWebIDBDatabaseCallbacksImpl.cpp58 void WebIDBDatabaseCallbacksImpl::onAbort(long long transactionId, const WebIDBDatabaseError& error)
H A DWebIDBCallbacksImpl.h44 class WebIDBDatabaseError;
57 virtual void onError(const WebIDBDatabaseError&) OVERRIDE;
H A DWebIDBCallbacksImpl.cpp41 #include "public/platform/WebIDBDatabaseError.h"
48 using blink::WebIDBDatabaseError;
82 void WebIDBCallbacksImpl::onError(const WebIDBDatabaseError& error)
/external/chromium_org/content/child/indexed_db/
H A Dindexed_db_dispatcher_unittest.cc25 using blink::WebIDBDatabaseError;
36 virtual void onError(const WebIDBDatabaseError&) { error_seen_ = true; } argument
H A Dindexed_db_dispatcher.cc21 #include "third_party/WebKit/public/platform/WebIDBDatabaseError.h"
30 using blink::WebIDBDatabaseError;
340 callbacks->onError(WebIDBDatabaseError(
735 callbacks->onError(WebIDBDatabaseError(code));
737 callbacks->onError(WebIDBDatabaseError(code, message));
753 callbacks->onAbort(transaction_id, WebIDBDatabaseError(code));
755 callbacks->onAbort(transaction_id, WebIDBDatabaseError(code, message));

Completed in 317 milliseconds