summaryrefslogtreecommitdiff
path: root/fpdfsdk/javascript/cjs_event_context_stub.cpp
diff options
context:
space:
mode:
authorDan Sinclair <dsinclair@chromium.org>2017-10-30 16:50:51 +0000
committerChromium commit bot <commit-bot@chromium.org>2017-10-30 16:50:51 +0000
commit5ce2d2e0c7899dc2d3b3ac6a25293894fea04183 (patch)
tree788020a72fc6f57d2d58c6befad0819aeecf376c /fpdfsdk/javascript/cjs_event_context_stub.cpp
parent409726af056ddeab7f6fe4cf2a844bc954e77e0f (diff)
downloadpdfium-5ce2d2e0c7899dc2d3b3ac6a25293894fea04183.tar.xz
Rename JS_Runtime_Stub to cjs_runtimestub
This CL renames JS_Runtime_Stub.cpp to cjs_runtimestub.cpp to match the contents. The event context stub is moved to to cjs_event_context_stub.cpp. Change-Id: I1b231b10aaedd1fe484e55736b0fb562d0a0df88 Reviewed-on: https://pdfium-review.googlesource.com/17037 Commit-Queue: dsinclair <dsinclair@chromium.org> Reviewed-by: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'fpdfsdk/javascript/cjs_event_context_stub.cpp')
-rw-r--r--fpdfsdk/javascript/cjs_event_context_stub.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/fpdfsdk/javascript/cjs_event_context_stub.cpp b/fpdfsdk/javascript/cjs_event_context_stub.cpp
new file mode 100644
index 0000000000..ac8022b8ed
--- /dev/null
+++ b/fpdfsdk/javascript/cjs_event_context_stub.cpp
@@ -0,0 +1,12 @@
+// Copyright 2017 PDFium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
+
+#include "fpdfsdk/javascript/cjs_event_context_stub.h"
+
+bool CJS_EventContextStub::RunScript(const WideString& script,
+ WideString* info) {
+ return false;
+}