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