diff options
author | dsinclair <dsinclair@chromium.org> | 2016-06-08 13:12:41 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-06-08 13:12:41 -0700 |
commit | 769b137a435fd53a419ebbd1deb8617771b73ef6 (patch) | |
tree | 4b4a525a939349e30719b29a7cf1b9f8d78de6aa /xfa/fxjse/class.cpp | |
parent | bc85eecc6cbac54e4b69fe202f802047d2979bf1 (diff) | |
download | pdfium-769b137a435fd53a419ebbd1deb8617771b73ef6.tar.xz |
Remove more FXJSE c-method wrappers.
This Cl cleans up a bunch of the FXJSE_* methods and moves others into the
classes where they most make sense.
Review-Url: https://codereview.chromium.org/2045883004
Diffstat (limited to 'xfa/fxjse/class.cpp')
-rw-r--r-- | xfa/fxjse/class.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/xfa/fxjse/class.cpp b/xfa/fxjse/class.cpp index e7e061b5a3..bd589453f2 100644 --- a/xfa/fxjse/class.cpp +++ b/xfa/fxjse/class.cpp @@ -23,12 +23,6 @@ static void FXJSE_V8SetterCallback_Wrapper( v8::Local<v8::Value> value, const v8::PropertyCallbackInfo<void>& info); -CFXJSE_Class* FXJSE_DefineClass(CFXJSE_Context* pContext, - const FXJSE_CLASS_DESCRIPTOR* lpClass) { - ASSERT(pContext); - return CFXJSE_Class::Create(pContext, lpClass, FALSE); -} - static void FXJSE_V8FunctionCallback_Wrapper( const v8::FunctionCallbackInfo<v8::Value>& info) { const FXJSE_FUNCTION_DESCRIPTOR* lpFunctionInfo = |