Home | History | Annotate | Download | only in src

Lines Matching defs:onSuccess

67 void IDBCallbacksProxy::onSuccess(PassRefPtr<IDBCursorBackendInterface> idbCursorBackend)
69 m_callbacks->onSuccess(new WebIDBCursorImpl(idbCursorBackend));
72 void IDBCallbacksProxy::onSuccess(PassRefPtr<IDBDatabaseBackendInterface> backend)
74 m_callbacks->onSuccess(new WebIDBDatabaseImpl(backend));
77 void IDBCallbacksProxy::onSuccess(PassRefPtr<IDBKey> idbKey)
79 m_callbacks->onSuccess(WebIDBKey(idbKey));
82 void IDBCallbacksProxy::onSuccess(PassRefPtr<IDBTransactionBackendInterface> backend)
84 m_callbacks->onSuccess(new WebIDBTransactionImpl(backend));
87 void IDBCallbacksProxy::onSuccess(PassRefPtr<SerializedScriptValue> serializedScriptValue)
89 m_callbacks->onSuccess(WebSerializedScriptValue(serializedScriptValue));