diff options
author | dsinclair <dsinclair@chromium.org> | 2016-06-09 13:24:34 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-06-09 13:24:34 -0700 |
commit | 8bd9ce00a0755d72c9b5b8ad43d8f50c2f51e5c5 (patch) | |
tree | 9dd3a72354f353694cc52747acabf297a10251a3 /xfa/fxjse/class.h | |
parent | 3cace320e07bb954710c50fc7634ca3a8f3eda38 (diff) | |
download | pdfium-8bd9ce00a0755d72c9b5b8ad43d8f50c2f51e5c5.tar.xz |
Move xfa/fxjse/ to fxjse/
This makes it clear that fxjse/ is a standalone component and should not be
entangled with other xfa/ components.
BUG=pdfium:506
Review-Url: https://codereview.chromium.org/2056663004
Diffstat (limited to 'xfa/fxjse/class.h')
-rw-r--r-- | xfa/fxjse/class.h | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/xfa/fxjse/class.h b/xfa/fxjse/class.h deleted file mode 100644 index a28d36801e..0000000000 --- a/xfa/fxjse/class.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 XFA_FXJSE_CLASS_H_ -#define XFA_FXJSE_CLASS_H_ - -#include "v8/include/v8.h" -#include "xfa/fxjse/cfxjse_arguments.h" -#include "xfa/fxjse/include/fxjse.h" - -class CFXJSE_Context; -class CFXJSE_Value; - -class CFXJSE_Class { - public: - static CFXJSE_Class* Create(CFXJSE_Context* pContext, - const FXJSE_CLASS_DESCRIPTOR* lpClassDefintion, - FX_BOOL bIsJSGlobal = FALSE); - static CFXJSE_Class* GetClassFromContext(CFXJSE_Context* pContext, - const CFX_ByteStringC& szName); - static void SetUpNamedPropHandler( - v8::Isolate* pIsolate, - v8::Local<v8::ObjectTemplate>& hObjectTemplate, - const FXJSE_CLASS_DESCRIPTOR* lpClassDefinition); - - CFXJSE_Context* GetContext() { return m_pContext; } - v8::Global<v8::FunctionTemplate>& GetTemplate() { return m_hTemplate; } - - protected: - explicit CFXJSE_Class(CFXJSE_Context* lpContext) - : m_lpClassDefinition(nullptr), m_pContext(lpContext) {} - - CFX_ByteString m_szClassName; - const FXJSE_CLASS_DESCRIPTOR* m_lpClassDefinition; - CFXJSE_Context* m_pContext; - v8::Global<v8::FunctionTemplate> m_hTemplate; - friend class CFXJSE_Context; - friend class CFXJSE_Value; -}; - -#endif // XFA_FXJSE_CLASS_H_ |