diff options
author | dsinclair <dsinclair@chromium.org> | 2016-06-13 12:47:07 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-06-13 12:47:07 -0700 |
commit | 754646948a572745380bcbdc23433337ca3dc562 (patch) | |
tree | 748b141c00370e8c53edae4cad94201a8c3d2c09 /fpdfsdk | |
parent | 4044d2db97922a28708d358e3aa580df53329ff9 (diff) | |
download | pdfium-754646948a572745380bcbdc23433337ca3dc562.tar.xz |
Remove unimplemented signatures
Neither of these methods have bodies, remove from header file.
Review-Url: https://codereview.chromium.org/2060303002
Diffstat (limited to 'fpdfsdk')
-rw-r--r-- | fpdfsdk/jsapi/include/fxjs_v8.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/fpdfsdk/jsapi/include/fxjs_v8.h b/fpdfsdk/jsapi/include/fxjs_v8.h index 6606df4d26..60389d2e1a 100644 --- a/fpdfsdk/jsapi/include/fxjs_v8.h +++ b/fpdfsdk/jsapi/include/fxjs_v8.h @@ -138,7 +138,6 @@ class FXJS_ArrayBufferAllocator : public v8::ArrayBuffer::Allocator { using FXJS_CONSTRUCTOR = void (*)(IJS_Runtime* cc, v8::Local<v8::Object> obj); using FXJS_DESTRUCTOR = void (*)(v8::Local<v8::Object> obj); -// Call before making FXJS_PrepareIsolate call. void FXJS_Initialize(unsigned int embedderDataSlot, v8::Isolate* pIsolate); void FXJS_Release(); @@ -150,14 +149,6 @@ bool FXJS_GetIsolate(v8::Isolate** pResultIsolate); // Get the global isolate's ref count. size_t FXJS_GlobalIsolateRefCount(); -// Call before making FXJS_Define* calls. Resources allocated here are cleared -// as part of FXJS_ReleaseRuntime(). -void FXJS_PrepareIsolate(v8::Isolate* pIsolate); - -// Call before making JS_Define* calls. Resources allocated here are cleared -// as part of JS_ReleaseRuntime(). -void JS_PrepareIsolate(v8::Isolate* pIsolate); - // Always returns a valid, newly-created objDefnID. int FXJS_DefineObj(v8::Isolate* pIsolate, const wchar_t* sObjName, |