blob: f03ddb92d2689634a517f7da32415c69ee63bd75 [file] [log] [blame]
Dan Sinclaircb876822018-03-22 16:21:04 +00001// Copyright 2018 The PDFium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef SAMPLES_PDFIUM_TEST_EVENT_HELPER_H_
6#define SAMPLES_PDFIUM_TEST_EVENT_HELPER_H_
7
Tom Sepezdc85f862020-12-09 19:06:14 +00008#include <functional>
Dan Sinclaircb876822018-03-22 16:21:04 +00009#include <string>
10
11#include "public/fpdf_formfill.h"
12#include "public/fpdfview.h"
13
14void SendPageEvents(FPDF_FORMHANDLE form,
15 FPDF_PAGE page,
Tom Sepezdc85f862020-12-09 19:06:14 +000016 const std::string& events,
17 const std::function<void()>& idler);
Dan Sinclaircb876822018-03-22 16:21:04 +000018
19#endif // SAMPLES_PDFIUM_TEST_EVENT_HELPER_H_