summaryrefslogtreecommitdiff
path: root/fpdfsdk/javascript/JS_Value.h
diff options
context:
space:
mode:
authorDan Sinclair <dsinclair@chromium.org>2017-10-24 15:29:22 -0400
committerChromium commit bot <commit-bot@chromium.org>2017-10-24 21:00:44 +0000
commite85107bc8ab5bbd5b2d3f97fd6071d7ce4a78bcc (patch)
tree77bc28ff0366d3ff873c9d62db0e262421aedc9a /fpdfsdk/javascript/JS_Value.h
parent037eae6e99ef16a42cb74a72b0b52d515a099b3a (diff)
downloadpdfium-e85107bc8ab5bbd5b2d3f97fd6071d7ce4a78bcc.tar.xz
Move MaybeCoerceToNumber to CJS_Runtime
This CL moves MaybeCoerceToNumber from CJS_Value to CJS_Runtime. Change-Id: I22bb605045daa63f405ef256e4b8a5c7ffb78425 Reviewed-on: https://pdfium-review.googlesource.com/16617 Commit-Queue: dsinclair <dsinclair@chromium.org> Reviewed-by: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'fpdfsdk/javascript/JS_Value.h')
-rw-r--r--fpdfsdk/javascript/JS_Value.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/fpdfsdk/javascript/JS_Value.h b/fpdfsdk/javascript/JS_Value.h
index ff3bf9c51e..d098812361 100644
--- a/fpdfsdk/javascript/JS_Value.h
+++ b/fpdfsdk/javascript/JS_Value.h
@@ -29,10 +29,6 @@ class CJS_Value {
v8::Local<v8::Value> ToV8Value() const;
- // Replace the current |m_pValue| with a v8::Number if possible
- // to make one from the current |m_pValue|.
- void MaybeCoerceToNumber(CJS_Runtime* pRuntime);
-
private:
v8::Local<v8::Value> m_pValue;
};