weblayer_features.cc 517 B

1234567891011121314151617
  1. // Copyright 2020 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. #include "weblayer/browser/weblayer_features.h"
  5. #include "build/build_config.h"
  6. namespace weblayer {
  7. #if BUILDFLAG(IS_ANDROID)
  8. // Used to disable browser-control animations.
  9. const base::Feature kImmediatelyHideBrowserControlsForTest{
  10. "ImmediatelyHideBrowserControlsForTest", base::FEATURE_DISABLED_BY_DEFAULT};
  11. #endif
  12. } // namespace weblayer