diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-10-25 13:30:31 -0400 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-10-25 18:40:45 +0000 |
commit | 8f524d6ff9c5c5e07388438e58aca7dc39f43a1f (patch) | |
tree | ec73d24ebdfb84e0c9a254a35912edc5ab54dae7 /fpdfsdk/javascript/color.h | |
parent | 2474a3b2d9fe987dac58813771f1fa66427e124f (diff) | |
download | pdfium-8f524d6ff9c5c5e07388438e58aca7dc39f43a1f.tar.xz |
Refactor JS method parameters and return values.
This CL removes the out parameters from the JS methods and changes the
return from a |bool| to a |CJS_Return| value. The return value holds the
returned v8 object, error string and a status code.
Change-Id: I82488ff0d916475d7e3c8e51ed868639806181c9
Reviewed-on: https://pdfium-review.googlesource.com/16751
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'fpdfsdk/javascript/color.h')
-rw-r--r-- | fpdfsdk/javascript/color.h | 118 |
1 files changed, 44 insertions, 74 deletions
diff --git a/fpdfsdk/javascript/color.h b/fpdfsdk/javascript/color.h index de784e57b2..454de57e72 100644 --- a/fpdfsdk/javascript/color.h +++ b/fpdfsdk/javascript/color.h @@ -22,82 +22,52 @@ class color : public CJS_EmbedObj { explicit color(CJS_Object* pJSObject); ~color() override; - bool get_black(CJS_Runtime* pRuntime, CJS_Value* vp, WideString* sError); - bool set_black(CJS_Runtime* pRuntime, - v8::Local<v8::Value> vp, - WideString* sError); - - bool get_blue(CJS_Runtime* pRuntime, CJS_Value* vp, WideString* sError); - bool set_blue(CJS_Runtime* pRuntime, - v8::Local<v8::Value> vp, - WideString* sError); - - bool get_cyan(CJS_Runtime* pRuntime, CJS_Value* vp, WideString* sError); - bool set_cyan(CJS_Runtime* pRuntime, - v8::Local<v8::Value> vp, - WideString* sError); - - bool get_dark_gray(CJS_Runtime* pRuntime, CJS_Value* vp, WideString* sError); - bool set_dark_gray(CJS_Runtime* pRuntime, - v8::Local<v8::Value> vp, - WideString* sError); - - bool get_gray(CJS_Runtime* pRuntime, CJS_Value* vp, WideString* sError); - bool set_gray(CJS_Runtime* pRuntime, - v8::Local<v8::Value> vp, - WideString* sError); - - bool get_green(CJS_Runtime* pRuntime, CJS_Value* vp, WideString* sError); - bool set_green(CJS_Runtime* pRuntime, - v8::Local<v8::Value> vp, - WideString* sError); - - bool get_light_gray(CJS_Runtime* pRuntime, CJS_Value* vp, WideString* sError); - bool set_light_gray(CJS_Runtime* pRuntime, - v8::Local<v8::Value> vp, - WideString* sError); - - bool get_magenta(CJS_Runtime* pRuntime, CJS_Value* vp, WideString* sError); - bool set_magenta(CJS_Runtime* pRuntime, - v8::Local<v8::Value> vp, - WideString* sError); - - bool get_red(CJS_Runtime* pRuntime, CJS_Value* vp, WideString* sError); - bool set_red(CJS_Runtime* pRuntime, - v8::Local<v8::Value> vp, - WideString* sError); - - bool get_transparent(CJS_Runtime* pRuntime, - CJS_Value* vp, - WideString* sError); - bool set_transparent(CJS_Runtime* pRuntime, - v8::Local<v8::Value> vp, - WideString* sError); - - bool get_white(CJS_Runtime* pRuntime, CJS_Value* vp, WideString* sError); - bool set_white(CJS_Runtime* pRuntime, - v8::Local<v8::Value> vp, - WideString* sError); - - bool get_yellow(CJS_Runtime* pRuntime, CJS_Value* vp, WideString* sError); - bool set_yellow(CJS_Runtime* pRuntime, - v8::Local<v8::Value> vp, - WideString* sError); - - bool convert(CJS_Runtime* pRuntime, - const std::vector<v8::Local<v8::Value>>& params, - CJS_Value& vRet, - WideString& sError); - bool equal(CJS_Runtime* pRuntime, - const std::vector<v8::Local<v8::Value>>& params, - CJS_Value& vRet, - WideString& sError); + CJS_Return get_black(CJS_Runtime* pRuntime); + CJS_Return set_black(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp); + + CJS_Return get_blue(CJS_Runtime* pRuntime); + CJS_Return set_blue(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp); + + CJS_Return get_cyan(CJS_Runtime* pRuntime); + CJS_Return set_cyan(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp); + + CJS_Return get_dark_gray(CJS_Runtime* pRuntime); + CJS_Return set_dark_gray(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp); + + CJS_Return get_gray(CJS_Runtime* pRuntime); + CJS_Return set_gray(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp); + + CJS_Return get_green(CJS_Runtime* pRuntime); + CJS_Return set_green(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp); + + CJS_Return get_light_gray(CJS_Runtime* pRuntime); + CJS_Return set_light_gray(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp); + + CJS_Return get_magenta(CJS_Runtime* pRuntime); + CJS_Return set_magenta(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp); + + CJS_Return get_red(CJS_Runtime* pRuntime); + CJS_Return set_red(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp); + + CJS_Return get_transparent(CJS_Runtime* pRuntime); + CJS_Return set_transparent(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp); + + CJS_Return get_white(CJS_Runtime* pRuntime); + CJS_Return set_white(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp); + + CJS_Return get_yellow(CJS_Runtime* pRuntime); + CJS_Return set_yellow(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp); + + CJS_Return convert(CJS_Runtime* pRuntime, + const std::vector<v8::Local<v8::Value>>& params); + CJS_Return equal(CJS_Runtime* pRuntime, + const std::vector<v8::Local<v8::Value>>& params); private: - bool GetPropertyHelper(CJS_Runtime* pRuntime, CJS_Value* vp, CFX_Color* val); - bool SetPropertyHelper(CJS_Runtime* pRuntime, - v8::Local<v8::Value> vp, - CFX_Color* val); + CJS_Return GetPropertyHelper(CJS_Runtime* pRuntime, CFX_Color* val); + CJS_Return SetPropertyHelper(CJS_Runtime* pRuntime, + v8::Local<v8::Value> vp, + CFX_Color* val); CFX_Color m_crTransparent; CFX_Color m_crBlack; |