forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpdf_features.h
27 lines (20 loc) · 825 Bytes
/
pdf_features.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// This file defines all the public base::FeatureList features for the pdf
// module.
#ifndef PDF_PDF_FEATURES_H_
#define PDF_PDF_FEATURES_H_
#include "base/feature_list.h"
namespace chrome_pdf {
namespace features {
extern const base::Feature kAccessiblePDFForm;
extern const base::Feature kPdfIncrementalLoading;
extern const base::Feature kPdfPartialLoading;
extern const base::Feature kPdfViewerDocumentProperties;
extern const base::Feature kPdfViewerPresentationMode;
extern const base::Feature kPdfXfaSupport;
extern const base::Feature kTabAcrossPDFAnnotations;
} // namespace features
} // namespace chrome_pdf
#endif // PDF_PDF_FEATURES_H_