• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // 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_DUMP_HELPER_H_
6 #define SAMPLES_PDFIUM_TEST_DUMP_HELPER_H_
7 
8 #include "public/fpdfview.h"
9 
10 void DumpChildStructure(FPDF_STRUCTELEMENT child, int indent);
11 void DumpPageInfo(FPDF_PAGE page, int page_idx);
12 void DumpPageStructure(FPDF_PAGE page, int page_idx);
13 void DumpMetaData(FPDF_DOCUMENT doc);
14 
15 #endif  // SAMPLES_PDFIUM_TEST_DUMP_HELPER_H_
16