blob: 1ceec032e44cbedb58b3b0096d282ae135e48400 [file] [log] [blame]
// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ui/base/ui_base_switches_util.h"
#include "base/command_line.h"
#include "build/build_config.h"
#include "ui/base/ui_base_features.h"
#include "ui/base/ui_base_switches.h"
#if BUILDFLAG(IS_ANDROID)
#include "base/android/android_info.h"
#endif
namespace switches {
bool IsElasticOverscrollEnabled() {
// On macOS and iOS this value is adjusted in `UpdateScrollbarTheme()`,
// but the system default is true.
#if BUILDFLAG(IS_APPLE)
return true;
#elif BUILDFLAG(IS_ANDROID)
return base::android::android_info::sdk_int() >=
base::android::android_info::SDK_VERSION_S &&
!base::CommandLine::ForCurrentProcess()->HasSwitch(
switches::kDisableOverscrollEdgeEffect) &&
base::FeatureList::IsEnabled(features::kElasticOverscroll);
#else
return base::FeatureList::IsEnabled(features::kElasticOverscroll);
#endif
}
} // namespace switches