Fix emulator build error
[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 BASE_FEATURE(kPdfOopif, "PdfOopif", base::FEATURE_DISABLED_BY_DEFAULT);
21
22 // "Partial loading" refers to loading only specific parts of the PDF.
23 // TODO(crbug.com/1064175): Remove this once partial loading is fixed.
24 BASE_FEATURE(kPdfPartialLoading,
25              "PdfPartialLoading",
26              base::FEATURE_DISABLED_BY_DEFAULT);
27
28 BASE_FEATURE(kPdfPortfolio, "PdfPortfolio", base::FEATURE_DISABLED_BY_DEFAULT);
29
30 BASE_FEATURE(kPdfUseSkiaRenderer,
31              "PdfUseSkiaRenderer",
32              base::FEATURE_DISABLED_BY_DEFAULT);
33
34 // Feature has no effect if Chrome is built with no XFA support.
35 BASE_FEATURE(kPdfXfaSupport,
36              "PdfXfaSupport",
37              base::FEATURE_DISABLED_BY_DEFAULT);
38
39 }  // namespace features
40 }  // namespace chrome_pdf