commit | 884b4f942d510974e713361b84a717340eb928b9 | [log] [tgz] |
---|---|---|
author | dsinclair <dsinclair@chromium.org> | Mon Jun 06 09:49:32 2016 -0700 |
committer | Commit bot <commit-bot@chromium.org> | Mon Jun 06 09:49:32 2016 -0700 |
tree | 712d15560e345be172f2e6c71a5f2bd85fe5e663 | |
parent | f7e108b2d0c2f67a143e99693df084bfff7037ec [diff] [blame] |
Remove unused context param from execute. The IJS_Context parameter is never used, removed. Review-Url: https://codereview.chromium.org/2035743002
diff --git a/fpdfsdk/javascript/JS_Runtime_Stub.cpp b/fpdfsdk/javascript/JS_Runtime_Stub.cpp index e94f8c7..4930900 100644 --- a/fpdfsdk/javascript/JS_Runtime_Stub.cpp +++ b/fpdfsdk/javascript/JS_Runtime_Stub.cpp
@@ -148,9 +148,7 @@ } #endif // PDF_ENABLE_XFA - int Execute(IJS_Context* cc, - const wchar_t* script, - CFX_WideString* info) override { + int Execute(const CFX_WideString& script, CFX_WideString* info) override { return 0; }