1 // Copyright 2013 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.
5 #ifndef CHROME_BROWSER_CHROMEOS_POWER_IDLE_ACTION_WARNING_OBSERVER_H_
6 #define CHROME_BROWSER_CHROMEOS_POWER_IDLE_ACTION_WARNING_OBSERVER_H_
8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h"
10 #include "chromeos/dbus/power_manager_client.h"
14 class IdleActionWarningDialogView
;
16 // Listens for notifications that the idle action is imminent and shows a
17 // warning dialog to the user.
18 class IdleActionWarningObserver
: public PowerManagerClient::Observer
{
20 IdleActionWarningObserver();
21 virtual ~IdleActionWarningObserver();
23 // PowerManagerClient::Observer:
24 virtual void IdleActionImminent() OVERRIDE
;
25 virtual void IdleActionDeferred() OVERRIDE
;
28 IdleActionWarningDialogView
* warning_dialog_
; // Not owned.
30 DISALLOW_COPY_AND_ASSIGN(IdleActionWarningObserver
);
33 } // namespace chromeos
35 #endif // CHROME_BROWSER_CHROMEOS_POWER_IDLE_ACTION_WARNING_OBSERVER_H_