Lei Zhang | 802201c | 2018-11-14 18:16:28 | [diff] [blame] | 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 | |
| 5 | #include "pdf/pdf_features.h" |
| 6 | |
| 7 | namespace chrome_pdf { |
| 8 | namespace features { |
| 9 | |
Lei Zhang | f5b1ef3a | 2019-03-06 00:26:22 | [diff] [blame] | 10 | const 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 Zhang | 802201c | 2018-11-14 18:16:28 | [diff] [blame] | 18 | |
dstockwell | 6dea0e01 | 2019-02-22 10:38:09 | [diff] [blame] | 19 | const 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 Stockwell | 6a3bbaed | 2018-11-28 10:44:05 | [diff] [blame] | 27 | |
Lei Zhang | 802201c | 2018-11-14 18:16:28 | [diff] [blame] | 28 | } // namespace features |
| 29 | } // namespace chrome_pdf |