blob: aed5cca0d11c7314290d603774800ab6972158f9 [file] [log] [blame]
Lei Zhang802201c2018-11-14 18:16:281// 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
5#include "pdf/pdf_features.h"
6
7namespace chrome_pdf {
8namespace features {
9
Lei Zhangf5b1ef3a2019-03-06 00:26:2210const base::Feature kSaveEditedPDFForm {
11 "SaveEditedPDFForm",
12#if defined(OS_CHROMEOS)
13 base::FEATURE_ENABLED_BY_DEFAULT
14#else
15 base::FEATURE_DISABLED_BY_DEFAULT
16#endif // defined(OS_CHROMEOS)
17};
Lei Zhang802201c2018-11-14 18:16:2818
dstockwell6dea0e012019-02-22 10:38:0919const base::Feature kPDFAnnotations {
20 "PDFAnnotations",
21#if defined(OS_CHROMEOS)
22 base::FEATURE_ENABLED_BY_DEFAULT
23#else
24 base::FEATURE_DISABLED_BY_DEFAULT
25#endif // defined(OS_CHROMEOS)
26};
Douglas Stockwell6a3bbaed2018-11-28 10:44:0527
Lei Zhang802201c2018-11-14 18:16:2828} // namespace features
29} // namespace chrome_pdf