Upload upstream chromium 76.0.3809.146
[platform/framework/web/chromium-efl.git] / pdf / pdf_features.cc
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
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 };
18
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 };
27
28 }  // namespace features
29 }  // namespace chrome_pdf