Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(261)

Unified Diff: xfa/fxfa/parser/xfa_script_logpseudomodel.cpp

Issue 2101403002: Pass element hash and name into CXFA_Object constructor. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@classname_return
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: xfa/fxfa/parser/xfa_script_logpseudomodel.cpp
diff --git a/xfa/fxfa/parser/xfa_script_logpseudomodel.cpp b/xfa/fxfa/parser/xfa_script_logpseudomodel.cpp
index 7e3c90559abd39849b3531dc26144b03ed20a180..aefa9d563fd4a2fea164eb1816c95ab1f1ce47c2 100644
--- a/xfa/fxfa/parser/xfa_script_logpseudomodel.cpp
+++ b/xfa/fxfa/parser/xfa_script_logpseudomodel.cpp
@@ -18,15 +18,23 @@
CScript_LogPseudoModel::CScript_LogPseudoModel(CXFA_Document* pDocument)
: CXFA_Object(pDocument,
XFA_ObjectType::Object,
- XFA_Element::LogPseudoModel) {}
+ XFA_Element::LogPseudoModel,
+ 0xd4bf6823,
+ CFX_WideStringC(L"logPseudoModel")) {}
+
CScript_LogPseudoModel::~CScript_LogPseudoModel() {}
+
void CScript_LogPseudoModel::Script_LogPseudoModel_Message(
CFXJSE_Arguments* pArguments) {}
+
void CScript_LogPseudoModel::Script_LogPseudoModel_TraceEnabled(
CFXJSE_Arguments* pArguments) {}
+
void CScript_LogPseudoModel::Script_LogPseudoModel_TraceActivate(
CFXJSE_Arguments* pArguments) {}
+
void CScript_LogPseudoModel::Script_LogPseudoModel_TraceDeactivate(
CFXJSE_Arguments* pArguments) {}
+
void CScript_LogPseudoModel::Script_LogPseudoModel_Trace(
CFXJSE_Arguments* pArguments) {}

Powered by Google App Engine
This is Rietveld 408576698