blob: c20498f0db66f0942b6facfba34e88278ca65af4 [file] [log] [blame]
// Copyright 2019 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.
#ifndef ASH_WALLPAPER_WALLPAPER_CONSTANTS_H_
#define ASH_WALLPAPER_WALLPAPER_CONSTANTS_H_
#include "ash/public/cpp/login_constants.h"
#include "ash/style/ash_color_provider.h"
namespace ash {
namespace wallpaper_constants {
// Blur sigma used for normal wallpaper.
constexpr float kClear = 0.f;
// Blur sigma used in overview mode.
constexpr float kOverviewBlur =
static_cast<float>(AshColorProvider::LayerBlurSigma::kBlurDefault);
// Blur sigma in lock/login screen.
constexpr float kLockLoginBlur = login_constants::kBlurSigma;
} // namespace wallpaper_constants
} // namespace ash
#endif // ASH_WALLPAPER_WALLPAPER_CONSTANTS_H_