[tips] duration fix

This commit is contained in:
Arsentiy Milchakov 2018-12-19 13:19:22 +03:00 committed by Roman Kuznetsov
parent 5f969d18c5
commit 7f0249ae1f
2 changed files with 2 additions and 2 deletions

View file

@ -21,7 +21,7 @@ auto constexpr kShowAnyTipPeriod = std::chrono::hours(24) * 3;
auto constexpr kShowSameTipPeriod = std::chrono::hours(24) * 30;
// Every current trigger for a tips screen can be activated at the start of the application by
// default and if the app was inactive more then 12 hours.
auto constexpr kShowTipAfterCollapsingPeriod = std::chrono::seconds(12 * 60 * 60);
auto constexpr kShowTipAfterCollapsingPeriod = std::chrono::hours(12);
// If a user clicks on the action areas (highlighted or blue button)
// the appropriate screen will never be shown again.
size_t constexpr kActionClicksCountToDisable = 1;

View file

@ -15,7 +15,7 @@
class TipsApi
{
public:
using Duration = std::chrono::duration<uint64_t>;
using Duration = std::chrono::hours;
using Condition = std::function<bool(eye::Info const & info)>;
using Conditions = std::array<Condition, static_cast<size_t>(eye::Tip::Type::Count)>;