blob: 642e4f353107499181cfd2b8265f503b9b83d0ef [file] [log] [blame]
// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ash/glanceables/test_glanceables_delegate.h"
namespace ash {
TestGlanceablesDelegate::TestGlanceablesDelegate() = default;
TestGlanceablesDelegate::~TestGlanceablesDelegate() = default;
void TestGlanceablesDelegate::RestoreSession() {
++restore_session_count_;
}
void TestGlanceablesDelegate::OnGlanceablesClosed() {
++on_glanceables_closed_count_;
}
bool TestGlanceablesDelegate::ShouldTakeSignoutScreenshot() {
return should_take_signout_screenshot_;
}
} // namespace ash