blob: 7697016e2cef1bebd1589d379896b343489b2e7f [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/data_reduction_proxy/core/common/data_reduction_proxy_features.h"
#include "build/build_config.h"
namespace data_reduction_proxy {
namespace features {
// Enables the Data Reduction Proxy menu item in the main menu on Android.
const base::Feature kDataReductionMainMenu{"DataReductionProxyMainMenu",
base::FEATURE_DISABLED_BY_DEFAULT};
// Enables the site breakdown on the Data Reduction Proxy settings page.
const base::Feature kDataReductionSiteBreakdown{
"DataReductionProxySiteBreakdown", base::FEATURE_DISABLED_BY_DEFAULT};
// Enables a new version of the data reduction proxy protocol where the server
// decides if a server-generated preview should be served. The previous
// version required the client to make this decision. The new protocol relies
// on updates primarily to the Chrome-Proxy-Accept-Transform header.
const base::Feature kDataReductionProxyDecidesTransform{
"DataReductionProxyDecidesTransform",
#if defined(OS_ANDROID)
base::FEATURE_ENABLED_BY_DEFAULT
#else // !defined(OS_ANDROID)
base::FEATURE_DISABLED_BY_DEFAULT
#endif // defined(OS_ANDROID)
};
// Enables the data saver promo for low memory Android devices.
const base::Feature kDataReductionProxyLowMemoryDevicePromo{
"DataReductionProxyLowMemoryDevicePromo",
base::FEATURE_DISABLED_BY_DEFAULT};
// Enables logic to modify the bypass behavior when a missing via header is
// detected.
const base::Feature kMissingViaHeaderShortDuration{
"MissingViaHeaderShortDuration", base::FEATURE_DISABLED_BY_DEFAULT};
// Enables experiment that makes connection to the data saver proxy more robust.
const base::Feature kDataReductionProxyRobustConnection{
"DataReductionProxyRobustConnection", base::FEATURE_ENABLED_BY_DEFAULT};
} // namespace features
} // namespace data_reduction_proxy