// Copyright 2016 The PDFium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com #ifndef FXJS_IJS_EVENT_CONTEXT_H_ #define FXJS_IJS_EVENT_CONTEXT_H_ #include <optional> #include "core/fxcrt/widestring.h" #include "fxjs/ijs_runtime.h" class CPDF_FormField; // Records the details of an event and triggers JS execution for it. There // can be more than one of these at any given time, as JS callbacks to C++ // may trigger new events on top of one another. class IJS_EventContext { … }; #endif // FXJS_IJS_EVENT_CONTEXT_H_