blob: 71c689b90db35162a9e5d54c216eccf1379f6f95 [file] [log] [blame]
dan sinclair993a1992017-10-25 20:21:09 -04001// Copyright 2017 PDFium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6
Dan Sinclaire0345a42017-10-30 20:20:42 +00007#ifndef FXJS_CJS_GLOBALCONSTS_H_
8#define FXJS_CJS_GLOBALCONSTS_H_
dan sinclair993a1992017-10-25 20:21:09 -04009
Lei Zhang31beedc2018-10-18 21:09:55 +000010#include "fxjs/cjs_object.h"
dan sinclair993a1992017-10-25 20:21:09 -040011
Tom Sepez55865452018-08-27 20:18:04 +000012class CJS_GlobalConsts final : public CJS_Object {
dan sinclair993a1992017-10-25 20:21:09 -040013 public:
14 static void DefineJSObjects(CJS_Runtime* pRuntime);
15};
16
Dan Sinclaire0345a42017-10-30 20:20:42 +000017#endif // FXJS_CJS_GLOBALCONSTS_H_