pdf_features.h 713 B

12345678910111213141516171819202122232425
  1. // Copyright 2018 The Chromium 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. // This file defines all the public base::FeatureList features for the pdf
  5. // module.
  6. #ifndef PDF_PDF_FEATURES_H_
  7. #define PDF_PDF_FEATURES_H_
  8. #include "base/feature_list.h"
  9. namespace chrome_pdf {
  10. namespace features {
  11. extern const base::Feature kAccessiblePDFForm;
  12. extern const base::Feature kPdfIncrementalLoading;
  13. extern const base::Feature kPdfPartialLoading;
  14. extern const base::Feature kPdfXfaSupport;
  15. extern const base::Feature kTabAcrossPDFAnnotations;
  16. } // namespace features
  17. } // namespace chrome_pdf
  18. #endif // PDF_PDF_FEATURES_H_