1 // Copyright 2017 The PDFium Authors
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
7 #include "fxjs/xfa/cjx_delta.h"
8
9 #include "core/fxcrt/span.h"
10 #include "fxjs/js_resources.h"
11 #include "fxjs/xfa/cfxjse_value.h"
12 #include "xfa/fxfa/parser/cxfa_delta.h"
13
14 const CJX_MethodSpec CJX_Delta::MethodSpecs[] = {{"restore", restore_static}};
15
CJX_Delta(CXFA_Delta * delta)16 CJX_Delta::CJX_Delta(CXFA_Delta* delta) : CJX_Object(delta) {
17 DefineMethods(MethodSpecs);
18 }
19
20 CJX_Delta::~CJX_Delta() = default;
21
DynamicTypeIs(TypeTag eType) const22 bool CJX_Delta::DynamicTypeIs(TypeTag eType) const {
23 return eType == static_type__ || ParentType__::DynamicTypeIs(eType);
24 }
25
restore(CFXJSE_Engine * runtime,pdfium::span<v8::Local<v8::Value>> params)26 CJS_Result CJX_Delta::restore(CFXJSE_Engine* runtime,
27 pdfium::span<v8::Local<v8::Value>> params) {
28 if (!params.empty())
29 return CJS_Result::Failure(JSMessage::kParamError);
30
31 return CJS_Result::Success();
32 }
33
currentValue(v8::Isolate * pIsolate,v8::Local<v8::Value> * pValue,bool bSetting,XFA_Attribute eAttribute)34 void CJX_Delta::currentValue(v8::Isolate* pIsolate,
35 v8::Local<v8::Value>* pValue,
36 bool bSetting,
37 XFA_Attribute eAttribute) {}
38
savedValue(v8::Isolate * pIsolate,v8::Local<v8::Value> * pValue,bool bSetting,XFA_Attribute eAttribute)39 void CJX_Delta::savedValue(v8::Isolate* pIsolate,
40 v8::Local<v8::Value>* pValue,
41 bool bSetting,
42 XFA_Attribute eAttribute) {}
43
target(v8::Isolate * pIsolate,v8::Local<v8::Value> * pValue,bool bSetting,XFA_Attribute eAttribute)44 void CJX_Delta::target(v8::Isolate* pIsolate,
45 v8::Local<v8::Value>* pValue,
46 bool bSetting,
47 XFA_Attribute eAttribute) {}
48