summaryrefslogtreecommitdiff
path: root/fpdfsdk/javascript/resource.h
diff options
context:
space:
mode:
authorDan Sinclair <dsinclair@chromium.org>2017-10-30 19:18:54 +0000
committerChromium commit bot <commit-bot@chromium.org>2017-10-30 19:18:54 +0000
commit3de090d52aa629f3bbded16ce7069a8b25bbbc46 (patch)
treed751faca6a7f0fdf462cb4c092f5fc5a199e73b2 /fpdfsdk/javascript/resource.h
parentd2d4df84d3c2f0466d9ad60ee52fa7cc3915ebe4 (diff)
downloadpdfium-3de090d52aa629f3bbded16ce7069a8b25bbbc46.tar.xz
Move resource to js_resource
This CL moves the resource.{cpp|h} files to js_resources.{cpp|h}. Change-Id: I6a9ccb7e0819f40edf4a91e7839a92657d5d39d7 Reviewed-on: https://pdfium-review.googlesource.com/17045 Reviewed-by: Tom Sepez <tsepez@chromium.org> Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'fpdfsdk/javascript/resource.h')
-rw-r--r--fpdfsdk/javascript/resource.h40
1 files changed, 0 insertions, 40 deletions
diff --git a/fpdfsdk/javascript/resource.h b/fpdfsdk/javascript/resource.h
deleted file mode 100644
index 3891918259..0000000000
--- a/fpdfsdk/javascript/resource.h
+++ /dev/null
@@ -1,40 +0,0 @@
-// Copyright 2014 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
-
-#ifndef FPDFSDK_JAVASCRIPT_RESOURCE_H_
-#define FPDFSDK_JAVASCRIPT_RESOURCE_H_
-
-#include "core/fxcrt/fx_string.h"
-
-class CJS_EventContext;
-
-#define IDS_STRING_JSALERT 25613
-#define IDS_STRING_JSPARAMERROR 25614
-#define IDS_STRING_JSAFNUMBER_KEYSTROKE 25615
-#define IDS_STRING_JSPARAM_TOOLONG 25617
-#define IDS_STRING_JSPARSEDATE 25618
-#define IDS_STRING_JSRANGE1 25619
-#define IDS_STRING_JSRANGE2 25620
-#define IDS_STRING_JSRANGE3 25621
-#define IDS_STRING_JSNOTSUPPORT 25627
-#define IDS_STRING_JSBUSY 25628
-#define IDS_STRING_JSEVENT 25629
-#define IDS_STRING_RUN 25630
-#define IDS_STRING_JSPRINT1 25632
-#define IDS_STRING_JSPRINT2 25633
-#define IDS_STRING_JSNOGLOBAL 25635
-#define IDS_STRING_JSREADONLY 25636
-#define IDS_STRING_JSTYPEERROR 25637
-#define IDS_STRING_JSVALUEERROR 25638
-#define IDS_STRING_JSNOPERMISSION 25639
-#define IDS_STRING_JSBADOBJECT 25640
-
-WideString JSGetStringFromID(uint32_t id);
-WideString JSFormatErrorString(const char* class_name,
- const char* property_name,
- const WideString& details);
-
-#endif // FPDFSDK_JAVASCRIPT_RESOURCE_H_