summaryrefslogtreecommitdiff
path: root/fpdfsdk/javascript/Icon.h
diff options
context:
space:
mode:
authorDan Sinclair <dsinclair@chromium.org>2017-10-30 15:36:43 +0000
committerChromium commit bot <commit-bot@chromium.org>2017-10-30 15:36:43 +0000
commit0ead5426591630db17a4dbed34e43dfab84379d1 (patch)
tree89196d5823e4ec3ddd3c8f95c9d52e666a7a7342 /fpdfsdk/javascript/Icon.h
parent51230323263024ec7f27ce868609fe5ab3d4323b (diff)
downloadpdfium-0ead5426591630db17a4dbed34e43dfab84379d1.tar.xz
Rename Icon to cjs_icon
This CL renames Icon.{cpp|h} to cjs_icon.{cpp|h}. Change-Id: Ie0554771441cfa7011205e0c4f461bb7526bb068 Reviewed-on: https://pdfium-review.googlesource.com/17034 Reviewed-by: Ryan Harrison <rharrison@chromium.org> Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'fpdfsdk/javascript/Icon.h')
-rw-r--r--fpdfsdk/javascript/Icon.h44
1 files changed, 0 insertions, 44 deletions
diff --git a/fpdfsdk/javascript/Icon.h b/fpdfsdk/javascript/Icon.h
deleted file mode 100644
index 9f6366178d..0000000000
--- a/fpdfsdk/javascript/Icon.h
+++ /dev/null
@@ -1,44 +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_ICON_H_
-#define FPDFSDK_JAVASCRIPT_ICON_H_
-
-#include "fpdfsdk/javascript/JS_Define.h"
-
-class CPDF_Stream;
-
-class Icon : public CJS_EmbedObj {
- public:
- explicit Icon(CJS_Object* pJSObject);
- ~Icon() override;
-
- CJS_Return get_name(CJS_Runtime* pRuntime);
- CJS_Return set_name(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp);
-
- WideString GetIconName() const { return m_swIconName; }
- void SetIconName(WideString name) { m_swIconName = name; }
-
- private:
- WideString m_swIconName;
-};
-
-class CJS_Icon : public CJS_Object {
- public:
- static int GetObjDefnID();
- static void DefineJSObjects(CFXJS_Engine* pEngine);
-
- explicit CJS_Icon(v8::Local<v8::Object> pObject) : CJS_Object(pObject) {}
- ~CJS_Icon() override {}
-
- JS_STATIC_PROP(name, name, Icon);
-
- private:
- static int ObjDefnID;
- static const JSPropertySpec PropertySpecs[];
-};
-
-#endif // FPDFSDK_JAVASCRIPT_ICON_H_