blob: 40ea6f85701d79a7ed722e98366f506449d325d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/feedback/features.h"
namespace feedback::features {
// Alphabetical:
// Enables feedback tool to save feedback report to local disk.
// This flag is only for e2e tast test purpose.
BASE_FEATURE(kOsFeedbackSaveReportToLocalForE2ETesting,
"OsFeedbackSaveReportToLocalForE2ETesting",
base::FEATURE_DISABLED_BY_DEFAULT);
bool IsOsFeedbackSaveReportToLocalForE2ETestingEnabled() {
return base::FeatureList::IsEnabled(
kOsFeedbackSaveReportToLocalForE2ETesting);
}
} // namespace feedback::features
|