summaryrefslogtreecommitdiff
path: root/fxjse/context.h
diff options
context:
space:
mode:
authordsinclair <dsinclair@chromium.org>2016-07-12 10:37:52 -0700
committerCommit bot <commit-bot@chromium.org>2016-07-12 10:37:52 -0700
commit08fea801054f3afadb95d0a54efe7da6683c5c5d (patch)
treedc81937c50050c91e6f3ca483d2c0d9d1feceed0 /fxjse/context.h
parent5a6c1398d0e559fb6a048cb0dca46ba9f9309a77 (diff)
downloadpdfium-08fea801054f3afadb95d0a54efe7da6683c5c5d.tar.xz
Rename fxjse/ to fxjs/ update files to match class names.
This Cl moves the fxjse/ directory to fxjs/ in anticipation of merging in fpdfsdk/jsapi. In the process the filenames are updated to better match the class contents. Static methods are moved to anonymous namespaces as possible. Review-Url: https://codereview.chromium.org/2136213002
Diffstat (limited to 'fxjse/context.h')
-rw-r--r--fxjse/context.h63
1 files changed, 0 insertions, 63 deletions
diff --git a/fxjse/context.h b/fxjse/context.h
deleted file mode 100644
index 3cc7123f55..0000000000
--- a/fxjse/context.h
+++ /dev/null
@@ -1,63 +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 FXJSE_CONTEXT_H_
-#define FXJSE_CONTEXT_H_
-
-#include <memory>
-#include <vector>
-
-#include "core/fxcrt/include/fx_basic.h"
-#include "fxjse/include/fxjse.h"
-#include "v8/include/v8.h"
-
-class CFXJSE_Class;
-class CFXJSE_Value;
-struct FXJSE_CLASS_DESCRIPTOR;
-
-class CFXJSE_Context {
- public:
- static CFXJSE_Context* Create(
- v8::Isolate* pIsolate,
- const FXJSE_CLASS_DESCRIPTOR* lpGlobalClass = nullptr,
- CFXJSE_HostObject* lpGlobalObject = nullptr);
- ~CFXJSE_Context();
-
- v8::Isolate* GetRuntime() { return m_pIsolate; }
- std::unique_ptr<CFXJSE_Value> GetGlobalObject();
- void EnableCompatibleMode();
- FX_BOOL ExecuteScript(const FX_CHAR* szScript,
- CFXJSE_Value* lpRetValue,
- CFXJSE_Value* lpNewThisObject = nullptr);
-
- protected:
- CFXJSE_Context();
- CFXJSE_Context(const CFXJSE_Context&);
- explicit CFXJSE_Context(v8::Isolate* pIsolate);
- CFXJSE_Context& operator=(const CFXJSE_Context&);
-
- v8::Global<v8::Context> m_hContext;
- v8::Isolate* m_pIsolate;
- std::vector<std::unique_ptr<CFXJSE_Class>> m_rgClasses;
-
- friend class CFXJSE_Class;
- friend class CFXJSE_ScopeUtil_IsolateHandleContext;
-};
-
-v8::Local<v8::Object> FXJSE_CreateReturnValue(v8::Isolate* pIsolate,
- v8::TryCatch& trycatch);
-
-v8::Local<v8::Object> FXJSE_GetGlobalObjectFromContext(
- const v8::Local<v8::Context>& hContext);
-
-void FXJSE_UpdateObjectBinding(v8::Local<v8::Object>& hObject,
- CFXJSE_HostObject* lpNewBinding = nullptr);
-
-CFXJSE_HostObject* FXJSE_RetrieveObjectBinding(
- const v8::Local<v8::Object>& hJSObject,
- CFXJSE_Class* lpClass = nullptr);
-
-#endif // FXJSE_CONTEXT_H_