// Copyright 2018 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_UI_VIEWS_RELAUNCH_NOTIFICATION_RELAUNCH_REQUIRED_TIMER_H_ #define CHROME_BROWSER_UI_VIEWS_RELAUNCH_NOTIFICATION_RELAUNCH_REQUIRED_TIMER_H_ #include "base/functional/callback.h" #include "base/time/time.h" #include "base/timer/wall_clock_timer.h" // Timer that handles notification title refresh for relaunch required // notification. Created either by RelaunchRequiredDialogView for Chrome // desktop or directly by the controller in the Chrome OS implementation. // Title refresh is invoked with the |callback| provided at creation. class RelaunchRequiredTimer { … }; #endif // CHROME_BROWSER_UI_VIEWS_RELAUNCH_NOTIFICATION_RELAUNCH_REQUIRED_TIMER_H_