diff options
Diffstat (limited to 'fxjs/xfa/cjx_source.cpp')
-rw-r--r-- | fxjs/xfa/cjx_source.cpp | 85 |
1 files changed, 51 insertions, 34 deletions
diff --git a/fxjs/xfa/cjx_source.cpp b/fxjs/xfa/cjx_source.cpp index 933229e07c..0b24b8f4b4 100644 --- a/fxjs/xfa/cjx_source.cpp +++ b/fxjs/xfa/cjx_source.cpp @@ -40,126 +40,143 @@ CJX_Source::~CJX_Source() {} CJS_Return CJX_Source::next(CFX_V8* runtime, const std::vector<v8::Local<v8::Value>>& params) { if (!params.empty()) - return CJS_Return(JSGetStringFromID(JSMessage::kParamError)); - return CJS_Return(); + return CJS_Return::Failure(JSMessage::kParamError); + + return CJS_Return::Success(); } CJS_Return CJX_Source::cancelBatch( CFX_V8* runtime, const std::vector<v8::Local<v8::Value>>& params) { if (!params.empty()) - return CJS_Return(JSGetStringFromID(JSMessage::kParamError)); - return CJS_Return(); + return CJS_Return::Failure(JSMessage::kParamError); + + return CJS_Return::Success(); } CJS_Return CJX_Source::first(CFX_V8* runtime, const std::vector<v8::Local<v8::Value>>& params) { if (!params.empty()) - return CJS_Return(JSGetStringFromID(JSMessage::kParamError)); - return CJS_Return(); + return CJS_Return::Failure(JSMessage::kParamError); + + return CJS_Return::Success(); } CJS_Return CJX_Source::updateBatch( CFX_V8* runtime, const std::vector<v8::Local<v8::Value>>& params) { if (!params.empty()) - return CJS_Return(JSGetStringFromID(JSMessage::kParamError)); - return CJS_Return(); + return CJS_Return::Failure(JSMessage::kParamError); + + return CJS_Return::Success(); } CJS_Return CJX_Source::previous( CFX_V8* runtime, const std::vector<v8::Local<v8::Value>>& params) { if (!params.empty()) - return CJS_Return(JSGetStringFromID(JSMessage::kParamError)); - return CJS_Return(); + return CJS_Return::Failure(JSMessage::kParamError); + + return CJS_Return::Success(); } CJS_Return CJX_Source::isBOF(CFX_V8* runtime, const std::vector<v8::Local<v8::Value>>& params) { if (!params.empty()) - return CJS_Return(JSGetStringFromID(JSMessage::kParamError)); - return CJS_Return(); + return CJS_Return::Failure(JSMessage::kParamError); + + return CJS_Return::Success(); } CJS_Return CJX_Source::isEOF(CFX_V8* runtime, const std::vector<v8::Local<v8::Value>>& params) { if (!params.empty()) - return CJS_Return(JSGetStringFromID(JSMessage::kParamError)); - return CJS_Return(); + return CJS_Return::Failure(JSMessage::kParamError); + + return CJS_Return::Success(); } CJS_Return CJX_Source::cancel(CFX_V8* runtime, const std::vector<v8::Local<v8::Value>>& params) { if (!params.empty()) - return CJS_Return(JSGetStringFromID(JSMessage::kParamError)); - return CJS_Return(); + return CJS_Return::Failure(JSMessage::kParamError); + + return CJS_Return::Success(); } CJS_Return CJX_Source::update(CFX_V8* runtime, const std::vector<v8::Local<v8::Value>>& params) { if (!params.empty()) - return CJS_Return(JSGetStringFromID(JSMessage::kParamError)); - return CJS_Return(); + return CJS_Return::Failure(JSMessage::kParamError); + + return CJS_Return::Success(); } CJS_Return CJX_Source::open(CFX_V8* runtime, const std::vector<v8::Local<v8::Value>>& params) { if (!params.empty()) - return CJS_Return(JSGetStringFromID(JSMessage::kParamError)); - return CJS_Return(); + return CJS_Return::Failure(JSMessage::kParamError); + + return CJS_Return::Success(); } CJS_Return CJX_Source::deleteItem( CFX_V8* runtime, const std::vector<v8::Local<v8::Value>>& params) { if (!params.empty()) - return CJS_Return(JSGetStringFromID(JSMessage::kParamError)); - return CJS_Return(); + return CJS_Return::Failure(JSMessage::kParamError); + + return CJS_Return::Success(); } CJS_Return CJX_Source::addNew(CFX_V8* runtime, const std::vector<v8::Local<v8::Value>>& params) { if (!params.empty()) - return CJS_Return(JSGetStringFromID(JSMessage::kParamError)); - return CJS_Return(); + return CJS_Return::Failure(JSMessage::kParamError); + + return CJS_Return::Success(); } CJS_Return CJX_Source::requery( CFX_V8* runtime, const std::vector<v8::Local<v8::Value>>& params) { if (!params.empty()) - return CJS_Return(JSGetStringFromID(JSMessage::kParamError)); - return CJS_Return(); + return CJS_Return::Failure(JSMessage::kParamError); + + return CJS_Return::Success(); } CJS_Return CJX_Source::resync(CFX_V8* runtime, const std::vector<v8::Local<v8::Value>>& params) { if (!params.empty()) - return CJS_Return(JSGetStringFromID(JSMessage::kParamError)); - return CJS_Return(); + return CJS_Return::Failure(JSMessage::kParamError); + + return CJS_Return::Success(); } CJS_Return CJX_Source::close(CFX_V8* runtime, const std::vector<v8::Local<v8::Value>>& params) { if (!params.empty()) - return CJS_Return(JSGetStringFromID(JSMessage::kParamError)); - return CJS_Return(); + return CJS_Return::Failure(JSMessage::kParamError); + + return CJS_Return::Success(); } CJS_Return CJX_Source::last(CFX_V8* runtime, const std::vector<v8::Local<v8::Value>>& params) { if (!params.empty()) - return CJS_Return(JSGetStringFromID(JSMessage::kParamError)); - return CJS_Return(); + return CJS_Return::Failure(JSMessage::kParamError); + + return CJS_Return::Success(); } CJS_Return CJX_Source::hasDataChanged( CFX_V8* runtime, const std::vector<v8::Local<v8::Value>>& params) { if (!params.empty()) - return CJS_Return(JSGetStringFromID(JSMessage::kParamError)); - return CJS_Return(); + return CJS_Return::Failure(JSMessage::kParamError); + + return CJS_Return::Success(); } void CJX_Source::db(CFXJSE_Value* pValue, |