summaryrefslogtreecommitdiff
path: root/fxjs/cjs_return.h
diff options
context:
space:
mode:
authorTom Sepez <tsepez@chromium.org>2018-06-08 18:23:05 +0000
committerChromium commit bot <commit-bot@chromium.org>2018-06-08 18:23:05 +0000
commit1699982f45d01cb18585eba80cce5326a63d3b67 (patch)
tree537d81d989632bab75fda37f5b587e1309e60d5d /fxjs/cjs_return.h
parentf29479d47156d180c0b71f6c98aa4de37c2a7ee2 (diff)
downloadpdfium-1699982f45d01cb18585eba80cce5326a63d3b67.tar.xz
Ensure CJS_Return() with error always includes a message.
Change the signature of the constructors to make it impossible to do this otherwise. Change-Id: I14e88d98a1128f2d599459ce9337cd6d079469fe Reviewed-on: https://pdfium-review.googlesource.com/34531 Reviewed-by: dsinclair <dsinclair@chromium.org> Commit-Queue: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'fxjs/cjs_return.h')
-rw-r--r--fxjs/cjs_return.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/fxjs/cjs_return.h b/fxjs/cjs_return.h
index 37c91caafe..df3c8519bd 100644
--- a/fxjs/cjs_return.h
+++ b/fxjs/cjs_return.h
@@ -8,12 +8,14 @@
#define FXJS_CJS_RETURN_H_
#include "fxjs/cfxjs_engine.h"
+#include "fxjs/js_resources.h"
class CJS_Return {
public:
- explicit CJS_Return(bool);
- explicit CJS_Return(const WideString&);
- explicit CJS_Return(v8::Local<v8::Value>);
+ CJS_Return(); // Successful but empty return.
+ explicit CJS_Return(v8::Local<v8::Value>); // Successful return with value.
+ explicit CJS_Return(const WideString&); // Error with custom message.
+ explicit CJS_Return(JSMessage id); // Error with stock message.
CJS_Return(const CJS_Return&);
~CJS_Return();
@@ -24,8 +26,6 @@ class CJS_Return {
v8::Local<v8::Value> Return() const { return return_; }
private:
- CJS_Return() = delete;
-
bool is_error_ = false;
WideString error_;
v8::Local<v8::Value> return_;