// Copyright (c) 2020 The Brave Authors. All rights reserved. // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this file, // you can obtain one at http://mozilla.org/MPL/2.0/. #include "brave/components/speedreader/common/features.h" namespace speedreader::features { BASE_FEATURE(kSpeedreaderFeature, "Speedreader", base::FEATURE_ENABLED_BY_DEFAULT); const base::FeatureParam kSpeedreaderMinOutLengthParam{ &kSpeedreaderFeature, "min_out_length", 1000}; const base::FeatureParam kSpeedreaderTTS{&kSpeedreaderFeature, "tts", false}; const base::FeatureParam kSpeedreaderDebugView{&kSpeedreaderFeature, "debug_view", false}; const base::FeatureParam kSpeedreaderExplicitPref{&kSpeedreaderFeature, "explicit_pref", true}; } // namespace speedreader::features