[M108 Migration][HBBTV] Implement ewk_context_register_jsplugin_mime_types API
[platform/framework/web/chromium-efl.git] / pdf / pdf_features.cc
1 // Copyright 2018 The Chromium Authors
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "pdf/pdf_features.h"
6
7 namespace chrome_pdf {
8 namespace features {
9
10 BASE_FEATURE(kAccessiblePDFForm,
11              "AccessiblePDFForm",
12              base::FEATURE_DISABLED_BY_DEFAULT);
13
14 // "Incremental loading" refers to loading the PDF as it arrives.
15 // TODO(crbug.com/1064175): Remove this once incremental loading is fixed.
16 BASE_FEATURE(kPdfIncrementalLoading,
17              "PdfIncrementalLoading",
18              base::FEATURE_DISABLED_BY_DEFAULT);
19
20 // "Partial loading" refers to loading only specific parts of the PDF.
21 // TODO(crbug.com/1064175): Remove this once partial loading is fixed.
22 BASE_FEATURE(kPdfPartialLoading,
23              "PdfPartialLoading",
24              base::FEATURE_DISABLED_BY_DEFAULT);
25
26 // Feature has no effect if Chrome is built with no XFA support.
27 BASE_FEATURE(kPdfXfaSupport,
28              "PdfXfaSupport",
29              base::FEATURE_DISABLED_BY_DEFAULT);
30
31 BASE_FEATURE(kTabAcrossPDFAnnotations,
32              "TabAcrossPDFAnnotations",
33              base::FEATURE_ENABLED_BY_DEFAULT);
34
35 }  // namespace features
36 }  // namespace chrome_pdf