| OLD | NEW |
| 1 // Copyright (c) 2015 PDFium Authors. All rights reserved. | 1 // Copyright 2015 PDFium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef TESTING_EMBEDDER_TEST_H_ | 5 #ifndef TESTING_EMBEDDER_TEST_H_ |
| 6 #define TESTING_EMBEDDER_TEST_H_ | 6 #define TESTING_EMBEDDER_TEST_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "public/fpdf_dataavail.h" | 11 #include "public/fpdf_dataavail.h" |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 static int SetTimerTrampoline(FPDF_FORMFILLINFO* info, | 135 static int SetTimerTrampoline(FPDF_FORMFILLINFO* info, |
| 136 int msecs, | 136 int msecs, |
| 137 TimerCallback fn); | 137 TimerCallback fn); |
| 138 static void KillTimerTrampoline(FPDF_FORMFILLINFO* info, int id); | 138 static void KillTimerTrampoline(FPDF_FORMFILLINFO* info, int id); |
| 139 static FPDF_PAGE GetPageTrampoline(FPDF_FORMFILLINFO* info, | 139 static FPDF_PAGE GetPageTrampoline(FPDF_FORMFILLINFO* info, |
| 140 FPDF_DOCUMENT document, | 140 FPDF_DOCUMENT document, |
| 141 int page_index); | 141 int page_index); |
| 142 }; | 142 }; |
| 143 | 143 |
| 144 #endif // TESTING_EMBEDDER_TEST_H_ | 144 #endif // TESTING_EMBEDDER_TEST_H_ |
| OLD | NEW |